syntax: Fix an accidental hyperlink in a comment

This commit is contained in:
Alex Crichton 2014-05-29 15:52:23 -07:00
parent 31f5de610f
commit d58f27a82f
2 changed files with 2 additions and 2 deletions

View File

@ -1028,7 +1028,7 @@ pub enum Type {
// region, raw, other boxes, mutable
}
#[deriving(Clone, Encodable, Decodable, Eq, TotalEq, Hash)]
#[deriving(Clone, Encodable, Decodable, PartialEq, TotalEq, Hash)]
pub enum Primitive {
Int, I8, I16, I32, I64,
Uint, U8, U16, U32, U64,

View File

@ -288,7 +288,7 @@ pub enum SubstructureFields<'a> {
/**
non-matching variants of the enum, [(variant index, ast::Variant,
[field span, field ident, fields])] (i.e. all fields for self are in the
[field span, field ident, fields])] \(i.e. all fields for self are in the
first tuple, for other1 are in the second tuple, etc.)
*/
EnumNonMatching(&'a [(uint, P<ast::Variant>, Vec<(Span, Option<Ident>, @Expr)> )]),