From 81cd1ed58bb06593c39c9449f415385cc23d3652 Mon Sep 17 00:00:00 2001 From: Robert Attard Date: Tue, 19 Mar 2024 11:52:49 -0400 Subject: [PATCH] fix description for caps flag in example --- README.md | 2 +- examples/hello/src/hello.gleam | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f945704..e8f45f3 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/examples/hello/src/hello.gleam b/examples/hello/src/hello.gleam index 08e7c78..a464991 100644 --- a/examples/hello/src/hello.gleam +++ b/examples/hello/src/hello.gleam @@ -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