diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index abfd119acbb99..69c886e79ce72 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]),