about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/rustc/middle/borrowck/preserve.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rustc/middle/borrowck/preserve.rs b/src/rustc/middle/borrowck/preserve.rs
index d4e2b3cbe60..98c9109fe8e 100644
--- a/src/rustc/middle/borrowck/preserve.rs
+++ b/src/rustc/middle/borrowck/preserve.rs
@@ -17,7 +17,7 @@ impl public_methods for borrowck_ctxt {
           }
           cat_local(_) {
             // Normally, local variables are lendable, and so this
-            // case should never trigged.  However, if we are
+            // case should never trigger.  However, if we are
             // preserving an expression like a.b where the field `b`
             // has @ type, then it will recurse to ensure that the `a`
             // is stable to try and avoid rooting the value `a.b`.  In