summary refs log tree commit diff
path: root/src/libsyntax/parse/token.rs
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2012-07-13 18:43:52 -0700
committerNiko Matsakis <niko@alum.mit.edu>2012-07-14 17:37:20 -0700
commit41a21f053ced3df8fe9acc66cb30fb6005339b3e (patch)
tree12cf2e5e9ba0405e31a0a6abd509b6a5d3f477c4 /src/libsyntax/parse/token.rs
parent1fbb9d035ddd0c9ae56a91167fda2f100c3987ad (diff)
downloadrust-41a21f053ced3df8fe9acc66cb30fb6005339b3e.tar.gz
rust-41a21f053ced3df8fe9acc66cb30fb6005339b3e.zip
remove typestate from code, tests, and docs
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 7db5af23266..eb8c5b65fa5 100644
--- a/src/libsyntax/parse/token.rs
+++ b/src/libsyntax/parse/token.rs
@@ -306,7 +306,7 @@ fn restricted_keyword_table() -> hashmap<~str, ()> {
     let keys = ~[
         ~"alt", ~"again", ~"assert",
         ~"break",
-        ~"check", ~"claim", ~"class", ~"const", ~"copy",
+        ~"check", ~"class", ~"const", ~"copy",
         ~"do", ~"drop",
         ~"else", ~"enum", ~"export", ~"extern",
         ~"fail", ~"false", ~"fn", ~"for",