about summary refs log tree commit diff
path: root/src/libsyntax
diff options
context:
space:
mode:
authorFlorian Hahn <flo@fhahn.com>2014-02-06 01:02:10 +0100
committerFlorian Hahn <flo@fhahn.com>2014-02-06 01:04:41 +0100
commit5d6bed8c8811a4e30c27fa3a6276e2ac91a96b83 (patch)
tree06f4bdc722cdf8f74017c804b99e29603b63ee59 /src/libsyntax
parent6aad3bf944da209d1852c51144ba584de400a10c (diff)
downloadrust-5d6bed8c8811a4e30c27fa3a6276e2ac91a96b83.tar.gz
rust-5d6bed8c8811a4e30c27fa3a6276e2ac91a96b83.zip
Remove reference to @str in comment
Diffstat (limited to 'src/libsyntax')
-rw-r--r--src/libsyntax/ast.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs
index abfd119acbb..69c886e79ce 100644
--- a/src/libsyntax/ast.rs
+++ b/src/libsyntax/ast.rs
@@ -1064,8 +1064,8 @@ pub struct ViewItem {
 #[deriving(Clone, Eq, Encodable, Decodable, IterBytes)]
 pub enum ViewItem_ {
     // ident: name used to refer to this crate in the code
-    // optional @str: if present, this is a location (containing
-    // arbitrary characters) from which to fetch the crate sources
+    // optional (InternedString,StrStyle): if present, this is a location
+    // (containing arbitrary characters) from which to fetch the crate sources
     // For example, extern mod whatever = "github.com/mozilla/rust"
     ViewItemExternMod(Ident, Option<(InternedString,StrStyle)>, NodeId),
     ViewItemUse(~[@ViewPath]),