]> git.lizzy.rs Git - rust.git/commitdiff
Fix a typo in a variable name.
authorNicholas Nethercote <nnethercote@mozilla.com>
Mon, 10 Feb 2020 21:44:55 +0000 (08:44 +1100)
committerNicholas Nethercote <nnethercote@mozilla.com>
Thu, 13 Feb 2020 23:51:08 +0000 (10:51 +1100)
src/librustc_expand/mbe/macro_rules.rs

index da4309c3b3d352cf6f0d54dc2e109d237e8c1369..f6abcce4d3facb79592b6e258032d1be208af178 100644 (file)
@@ -222,13 +222,14 @@ fn generic_extension<'cx>(
         // This is used so that if a matcher is not `Success(..)`ful,
         // then the spans which became gated when parsing the unsuccessful matcher
         // are not recorded. On the first `Success(..)`ful matcher, the spans are merged.
-        let mut gated_spans_snaphot = mem::take(&mut *cx.parse_sess.gated_spans.spans.borrow_mut());
+        let mut gated_spans_snapshot =
+            mem::take(&mut *cx.parse_sess.gated_spans.spans.borrow_mut());
 
         match parse_tt(&mut Cow::Borrowed(&parser), lhs_tt) {
             Success(named_matches) => {
                 // The matcher was `Success(..)`ful.
                 // Merge the gated spans from parsing the matcher with the pre-existing ones.
-                cx.parse_sess.gated_spans.merge(gated_spans_snaphot);
+                cx.parse_sess.gated_spans.merge(gated_spans_snapshot);
 
                 let rhs = match rhses[i] {
                     // ignore delimiters
@@ -289,7 +290,7 @@ fn generic_extension<'cx>(
 
         // The matcher was not `Success(..)`ful.
         // Restore to the state before snapshotting and maybe try again.
-        mem::swap(&mut gated_spans_snaphot, &mut cx.parse_sess.gated_spans.spans.borrow_mut());
+        mem::swap(&mut gated_spans_snapshot, &mut cx.parse_sess.gated_spans.spans.borrow_mut());
     }
     drop(parser);