Skip to content

Commit

Permalink
Apply suggestions
Browse files Browse the repository at this point in the history
Co-authored-by: Matthias Endler <[email protected]>
  • Loading branch information
Techassi and mre authored Jul 15, 2023
1 parent 3282463 commit 60f3cb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <ARCHIVE>
Specify the use of a specific web archive. Can be used in combination with `--suggest`
Expand Down
2 changes: 1 addition & 1 deletion lychee-bin/src/commands/dump.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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<S>(sources: S, output: Option<&PathBuf>) -> Result<ExitCode>
where
Expand Down
2 changes: 1 addition & 1 deletion lychee-bin/src/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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)]
Expand Down

0 comments on commit 60f3cb0

Please sign in to comment.