Skip to content

Commit

Permalink
Update help text for FILE argument
Browse files Browse the repository at this point in the history
This wasn't right!
  • Loading branch information
julianandrews committed Jun 22, 2024
1 parent 2918f2c commit c406fda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sgf-render"
version = "3.0.0"
version = "3.0.1"
authors = ["Julian Andrews <[email protected]>"]
edition = "2018"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Commands:
help Print this message or the help of the given subcommand(s)
Arguments:
[FILE] SGF file to [default: read from stdin]
[FILE] SGF file to read from [default: read from stdin]
Options:
-o, --outfile <FILE> Output file [default: write to stdout]
Expand Down
2 changes: 1 addition & 1 deletion src/lib/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const CLAP_STYLES: Styles = Styles::styled()
pub struct SgfRenderArgs {
#[clap(subcommand)]
pub command: Option<Command>,
/// SGF file to [default: read from stdin].
/// SGF file to read from [default: read from stdin].
#[arg(value_name = "FILE", global = true)]
pub infile: Option<PathBuf>,
/// Output file [default: write to stdout].
Expand Down

0 comments on commit c406fda

Please sign in to comment.