diff --git a/src/librustc_front/hir.rs b/src/librustc_front/hir.rs index 079bf677c8ea6..8897346771214 100644 --- a/src/librustc_front/hir.rs +++ b/src/librustc_front/hir.rs @@ -417,7 +417,7 @@ pub enum Pat_ { /// set (of "PatIdents that refer to nullary enums") PatIdent(BindingMode, Spanned, Option>), - /// "None" means a * pattern where we don't bind the fields to names. + /// "None" means a `Variant(..)` pattern where we don't bind the fields to names. PatEnum(Path, Option>>), /// An associated const named using the qualified path `::CONST` or @@ -439,8 +439,8 @@ pub enum Pat_ { PatLit(P), /// A range pattern, e.g. `1...2` PatRange(P, P), - /// [a, b, ..i, y, z] is represented as: - /// PatVec(box [a, b], Some(i), box [y, z]) + /// `[a, b, ..i, y, z]` is represented as: + /// `PatVec(box [a, b], Some(i), box [y, z])` PatVec(Vec>, Option>, Vec>), } diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 7b3c33d53a390..6c6d1544998d4 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -593,7 +593,7 @@ pub enum Pat_ { /// set (of "PatIdents that refer to nullary enums") PatIdent(BindingMode, SpannedIdent, Option>), - /// "None" means a * pattern where we don't bind the fields to names. + /// "None" means a `Variant(..)` pattern where we don't bind the fields to names. PatEnum(Path, Option>>), /// An associated const named using the qualified path `::CONST` or @@ -615,8 +615,8 @@ pub enum Pat_ { PatLit(P), /// A range pattern, e.g. `1...2` PatRange(P, P), - /// [a, b, ..i, y, z] is represented as: - /// PatVec(box [a, b], Some(i), box [y, z]) + /// `[a, b, ..i, y, z]` is represented as: + /// `PatVec(box [a, b], Some(i), box [y, z])` PatVec(Vec>, Option>, Vec>), /// A macro pattern; pre-expansion PatMac(Mac),