Skip to main content

Fix the name of the app in the help string

ID
e258513
date
2022-07-10 08:32:12+00:00
author
Alex Chan <alex@alexwlchan.net>
parent
282fcff
message
Fix the name of the app in the help string
changed files
2 files, 5 additions, 1 deletion

Changed files

CHANGELOG.md (54) → CHANGELOG.md (123)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index c98c22e..2a0b45c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # CHANGELOG
 
+## v1.0.1 - 2022-07-10
+
+Fix the name of the app in the help string.
+
 ## v1.0.0 - 2022-07-10
 
 Initial release.

src/main.rs (2184) → src/main.rs (2184)

diff --git a/src/main.rs b/src/main.rs
index 8c5ed39..5f0331d 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -16,7 +16,7 @@ struct OutputValue {
 }
 
 fn main() {
-    let matches = App::new("luminosity_adjust")
+    let matches = App::new("brightness_adjust")
         .version(VERSION)
         .author("Alex Chan <alex@alexwlchan.net>")
         .about("Show some darker/lighter variants of a given colour")