From ebdf0c20cdaf78e4b132c71cb927f8d1a8d2e3f7 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Tue, 12 Jun 2012 14:56:26 -0700 Subject: [PATCH] Correct typo in comment --- src/rustc/middle/borrowck/preserve.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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