about summary refs log tree commit diff
path: root/src/comp/syntax/parse/lexer.rs
diff options
context:
space:
mode:
authorPatrick Walton <pcwalton@mimiga.net>2012-01-19 14:24:03 -0800
committerPatrick Walton <pcwalton@mimiga.net>2012-01-19 14:24:03 -0800
commitbdb8f6cf52a2a4e2f78e6fa95d42140aa26ec31c (patch)
tree0d0b55cfc904eeec0d4bf99bd92744ff81324b39 /src/comp/syntax/parse/lexer.rs
parente6a7383a5f478b90b95556da25160ffee870b57d (diff)
downloadrust-bdb8f6cf52a2a4e2f78e6fa95d42140aa26ec31c.tar.gz
rust-bdb8f6cf52a2a4e2f78e6fa95d42140aa26ec31c.zip
rustc: "tag" -> "enum"
Diffstat (limited to 'src/comp/syntax/parse/lexer.rs')
-rw-r--r--src/comp/syntax/parse/lexer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/parse/lexer.rs b/src/comp/syntax/parse/lexer.rs
index 176e70cc65a..78cde98a9c5 100644
--- a/src/comp/syntax/parse/lexer.rs
+++ b/src/comp/syntax/parse/lexer.rs
@@ -510,7 +510,7 @@ fn next_token_inner(rdr: reader) -> token::token {
     }
 }
 
-tag cmnt_style {
+enum cmnt_style {
     isolated; // No code on either side of each line of the comment
     trailing; // Code exists to the left of the comment
     mixed; // Code before /* foo */ and after the comment