summaryrefslogtreecommitdiff
path: root/src/generator/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/generator/mod.rs')
-rw-r--r--src/generator/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/generator/mod.rs b/src/generator/mod.rs
index a371f68..415913e 100644
--- a/src/generator/mod.rs
+++ b/src/generator/mod.rs
@@ -36,7 +36,7 @@ pub trait Generator {
/// ```
fn file_name(&self, name: &str) -> String;
- /// Generates output out of [`clap::Command`](Command).
+ /// Generates output out of [`clap::Command`].
///
/// # Panics
///
@@ -44,7 +44,7 @@ pub trait Generator {
///
/// # Examples
///
- /// The following example generator displays the [`clap::Command`](Command)
+ /// The following example generator displays the [`clap::Command`]
/// as if it is printed using [`std::println`].
///
/// ```