about summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
diff options
context:
space:
mode:
authorJohn Clements <clements@racket-lang.org>2013-03-26 17:00:35 -0700
committerJohn Clements <clements@racket-lang.org>2013-04-10 09:15:04 -0700
commit48e7bda8269861df43763b4fb42e68af0eb09b20 (patch)
tree3aa7179b026047f62881b1734b4c86402af41759 /src/libsyntax/parse/token.rs
parent5d01f649b4cda55cb6ec358d0e2685c9901f62a1 (diff)
downloadrust-48e7bda8269861df43763b4fb42e68af0eb09b20.tar.gz
rust-48e7bda8269861df43763b4fb42e68af0eb09b20.zip
path -> Path
Diffstat (limited to 'src/libsyntax/parse/token.rs')
-rw-r--r--src/libsyntax/parse/token.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index 713a6e89475..54b2ad85147 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -113,7 +113,7 @@ pub enum nonterminal {
     nt_expr(@ast::expr),
     nt_ty(  @ast::Ty),
     nt_ident(ast::ident, bool),
-    nt_path(@ast::path),
+    nt_path(@ast::Path),
     nt_tt(  @ast::token_tree), //needs @ed to break a circularity
     nt_matchers(~[ast::matcher])
 }