Skip to content

Commit

Permalink
fix description for caps flag in example
Browse files Browse the repository at this point in the history
  • Loading branch information
TanklesXL committed Mar 19, 2024
1 parent 9c51911 commit 81cd1ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const caps = "caps"
fn caps_flag() -> flag.FlagBuilder(Bool) {
flag.bool()
|> flag.default(False)
|> flag.description("Capitalize the provided name")
|> flag.description("Capitalize the hello message")
}
/// the command function that will be executed
Expand Down
2 changes: 1 addition & 1 deletion examples/hello/src/hello.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ pub const caps = "caps"
pub fn caps_flag() -> flag.FlagBuilder(Bool) {
flag.bool()
|> flag.default(False)
|> flag.description("Capitalize the provided name")
|> flag.description("Capitalize the hello message")
}

/// the key for the repeat flag
Expand Down

0 comments on commit 81cd1ed

Please sign in to comment.