about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-07-27 19:18:16 -0700
committerGraydon Hoare <graydon@mozilla.com>2012-07-27 19:18:16 -0700
commit517af7e74389aae865b1d17df2bedb7e35f2740b (patch)
treecdae39e4b9e773a28d32f089c6a387e344e0a58a /src/libsyntax
parente11e90f31cedabec1e84b505bbf64103c3421574 (diff)
early => earley. Oops.
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index a3480c633d6..dee3c71788f 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -371,7 +371,7 @@ type capture_clause = @~[capture_item];
 // If the syntax extension is an MBE macro, it will attempt to match its
 // LHS "matchers" against the provided token tree, and if it finds a
 // match, will transcribe the RHS token tree, splicing in any captured
-// early_parser::matched_nonterminals into the tt_nonterminals it finds.
+// earley_parser::matched_nonterminals into the tt_nonterminals it finds.
 //
 // The RHS of an MBE macro is the only place a tt_nonterminal or tt_seq
 // makes any real sense. You could write them elsewhere but nothing