about summary refs log tree commit diff
path: root/src/comp/syntax/parse
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2011-09-02 16:45:00 -0700
committerBrian Anderson <banderson@mozilla.com>2011-09-02 22:11:46 -0700
commitf1555e2ca88d3c300e1c92cdc4cbc5bf84de86cd (patch)
treed993d819f17a9d95b274015d504a073e7915e671 /src/comp/syntax/parse
parent6217ce958e4b1007ca9e49751dba1aa1b68fbe67 (diff)
downloadrust-f1555e2ca88d3c300e1c92cdc4cbc5bf84de86cd.tar.gz
rust-f1555e2ca88d3c300e1c92cdc4cbc5bf84de86cd.zip
Rename ty_istr to ty_str. Issue #855
Diffstat (limited to 'src/comp/syntax/parse')
-rw-r--r--src/comp/syntax/parse/parser.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs
index 1b5d5f38835..9e45df8d111 100644
--- a/src/comp/syntax/parse/parser.rs
+++ b/src/comp/syntax/parse/parser.rs
@@ -486,7 +486,7 @@ fn parse_ty(p: &parser, colons_before_params: bool) -> @ast::ty {
     } else if eat_word(p, "float") {
         t = ast::ty_float;
     } else if eat_word(p, "str") {
-        t = ast::ty_istr;
+        t = ast::ty_str;
     } else if eat_word(p, "char") {
         t = ast::ty_char;
         /*