From a1d4476f24f8015f3b21511efc0f0c9b0630d1a8 Mon Sep 17 00:00:00 2001 From: Justin Browne Date: Tue, 18 Oct 2022 05:03:58 -0400 Subject: [PATCH] Fix a broken link in ValueEnum docs --- src/derive.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/derive.rs b/src/derive.rs index 7462901525e..a5df2edc6cf 100644 --- a/src/derive.rs +++ b/src/derive.rs @@ -346,7 +346,7 @@ pub trait Subcommand: FromArgMatches + Sized { /// /// When deriving [`Parser`], a field whose type implements `ValueEnum` can have the attribute /// `#[arg(value_enum)]` which will -/// - Call [EnumValueParser`][crate::builder::EnumValueParser]` +/// - Call [`EnumValueParser`][crate::builder::EnumValueParser] /// - Allowing using the `#[arg(default_value_t)]` attribute without implementing `Display`. /// /// See the [derive reference](crate::_derive) for attributes and best practices.