1
Fork 0

Remove reference to @str in comment

This commit is contained in:
Florian Hahn 2014-02-06 01:02:10 +01:00
parent 6aad3bf944
commit 5d6bed8c88

View file

@ -1064,8 +1064,8 @@ pub struct ViewItem {
#[deriving(Clone, Eq, Encodable, Decodable, IterBytes)] #[deriving(Clone, Eq, Encodable, Decodable, IterBytes)]
pub enum ViewItem_ { pub enum ViewItem_ {
// ident: name used to refer to this crate in the code // ident: name used to refer to this crate in the code
// optional @str: if present, this is a location (containing // optional (InternedString,StrStyle): if present, this is a location
// arbitrary characters) from which to fetch the crate sources // (containing arbitrary characters) from which to fetch the crate sources
// For example, extern mod whatever = "github.com/mozilla/rust" // For example, extern mod whatever = "github.com/mozilla/rust"
ViewItemExternMod(Ident, Option<(InternedString,StrStyle)>, NodeId), ViewItemExternMod(Ident, Option<(InternedString,StrStyle)>, NodeId),
ViewItemUse(~[@ViewPath]), ViewItemUse(~[@ViewPath]),