about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorMarijn Haverbeke <marijnh@gmail.com>2012-02-22 11:16:25 +0100
committerMarijn Haverbeke <marijnh@gmail.com>2012-02-22 11:16:25 +0100
commite57b6775c3a2d9dbe7fae69c189b8ae9032315cb (patch)
tree6f07cb4bd6ce573cadbdc89ac559c95c729b366f /src/comp/syntax/parse
parent40cd1a7c455afc55be01a988ae0c55f3d07fbcf5 (diff)
downloadrust-e57b6775c3a2d9dbe7fae69c189b8ae9032315cb.tar.gz
rust-e57b6775c3a2d9dbe7fae69c189b8ae9032315cb.zip
Clean up small things in syntax submodules
Diffstat (limited to 'src/comp/syntax/parse')
-rw-r--r--src/comp/syntax/parse/parser.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs
index 35d5119c4e6..a6f56b611d7 100644
--- a/src/comp/syntax/parse/parser.rs
+++ b/src/comp/syntax/parse/parser.rs
@@ -1581,7 +1581,7 @@ fn parse_local(p: parser, allow_init: bool) -> @ast::local {
 
 fn parse_let(p: parser) -> @ast::decl {
     if eat_word(p, "mut") {
-        /* TODO */
+        /* FIXME */
     }
     let lo = p.span.lo;
     let locals = [parse_local(p, true)];
@@ -2027,7 +2027,7 @@ enum class_contents { ctor_decl(ast::fn_decl, ast::blk),
         let body = parse_block(p);
         ret ctor_decl(decl, body);
     }
-    // TODO: refactor
+    // FIXME: refactor
     else if eat_word(p, "priv") {
             expect(p, token::LBRACE);
             let results = [];