From 7e9d73cf2d9ddd6346fb5da26d32f2faa28f7eaa Mon Sep 17 00:00:00 2001 From: Manish Goregaokar Date: Sun, 1 Nov 2015 16:32:51 +0530 Subject: [PATCH] Fix PatEnum docs --- src/librustc_front/hir.rs | 2 +- src/libsyntax/ast.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc_front/hir.rs b/src/librustc_front/hir.rs index 079bf677c8ea6..776faef5317ce 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 7b3c33d53a390..989be60a10361 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