From 60f3cb02702c77f6f6cecfa4db2b17ee62181380 Mon Sep 17 00:00:00 2001 From: Techassi Date: Sat, 15 Jul 2023 21:12:59 +0200 Subject: [PATCH] Apply suggestions Co-authored-by: Matthias Endler --- README.md | 2 +- lychee-bin/src/commands/dump.rs | 2 +- lychee-bin/src/options.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5f0437847a..c28bd9b772 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ Options: Don't perform any link checking. Instead, dump all the links extracted from inputs that would be checked --dump-inputs - Don't perform any link collection and checking. Instead, dump all input sources from which links would be collected + Don't perform any link collection and checking. Instead, dump all input sources from which links would be extracted --archive Specify the use of a specific web archive. Can be used in combination with `--suggest` diff --git a/lychee-bin/src/commands/dump.rs b/lychee-bin/src/commands/dump.rs index ba6ba5012f..580cdb9988 100644 --- a/lychee-bin/src/commands/dump.rs +++ b/lychee-bin/src/commands/dump.rs @@ -70,7 +70,7 @@ where Ok(ExitCode::Success) } -/// Dump all input sources to stdout without detecting any links and checking +/// Dump all input sources to stdout without extracting any links and checking /// them. pub(crate) async fn dump_inputs(sources: S, output: Option<&PathBuf>) -> Result where diff --git a/lychee-bin/src/options.rs b/lychee-bin/src/options.rs index 121cd254fa..e2abb9e3e1 100644 --- a/lychee-bin/src/options.rs +++ b/lychee-bin/src/options.rs @@ -181,7 +181,7 @@ pub(crate) struct Config { #[serde(default)] pub(crate) dump: bool, - /// Don't perform any link collection and checking. + /// Don't perform any link extraction and checking. /// Instead, dump all input sources from which links would be collected #[arg(long)] #[serde(default)]