about summary refs log tree commit diff
path: root/src/libsyntax/parse
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-09-09 17:41:13 -0700
committerBrian Anderson <banderson@mozilla.com>2012-09-09 17:42:00 -0700
commit901543ff8979fade994352463abbbf7f2810ba98 (patch)
tree9b92d2a32381877888b39b565b891108b0055b66 /src/libsyntax/parse
parente7a01b7383df092c9b5fc9367541cd9f90a07c40 (diff)
downloadrust-901543ff8979fade994352463abbbf7f2810ba98.tar.gz
rust-901543ff8979fade994352463abbbf7f2810ba98.zip
Reformat comments
Diffstat (limited to 'src/libsyntax/parse')
-rw-r--r--src/libsyntax/parse/token.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/libsyntax/parse/token.rs b/src/libsyntax/parse/token.rs
index 5c719af41cd..220fc7cf564 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -362,11 +362,11 @@ fn mk_fake_ident_interner() -> ident_interner {
 /**
  * All the valid words that have meaning in the Rust language.
  *
- * Rust keywords are either 'contextual', 'restricted', or 'strict, Contextual
- * keywords may be used as identifiers because their appearance in the grammar
- * is unambiguous. Restricted keywords may not appear in positions that might
- * otherwise contain _value identifiers_.  Strict keywords may not appear as
- * identifiers.
+ * Rust keywords are either 'contextual', 'restricted', or 'strict'.
+ * Contextual keywords may be used as identifiers because their appearance in
+ * the grammar is unambiguous. Restricted keywords may not appear in positions
+ * that might otherwise contain _value identifiers_.  Strict keywords may not
+ * appear as identifiers.
  */
 fn keyword_table() -> hashmap<~str, ()> {
     let keywords = str_hash();