Skip to content

Commit a7a3cc0

Browse files
committed
Docs
1 parent e9cebad commit a7a3cc0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/cli/bench/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub const COMMAND_NAME: &str = "bench";
1414

1515
pub fn cli(command: Command) -> Command {
1616
let sub_command = Command::new(COMMAND_NAME)
17-
.about("A Few benchmark utilities.")
17+
.about("A few benchmark utilities.")
1818
.subcommand_required(true)
1919
.arg_required_else_help(true)
2020
.allow_external_subcommands(true);

src/cli/to/ascii.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ use std::path::PathBuf;
1717
pub const COMMAND_NAME: &str = "ascii-convert";
1818

1919
#[derive(Args, Debug)]
20-
#[command(about = "Dumps a graph in ascii format, i.e. a line for each node with its successors separated by tabs.", long_about = None)]
20+
#[command(about = "Dumps a graph in ASCII format, that is, a line for each node with its successors separated by tabs.", long_about = None)]
2121
pub struct CliArgs {
2222
/// The basename of the graph.
2323
pub src: PathBuf,

0 commit comments

Comments
 (0)