diff --git a/src/librustc_front/hir.rs b/src/librustc_front/hir.rs index 079bf677c8ea..776faef5317c 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 diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index 7b3c33d53a39..989be60a1036 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