summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@atos.net>2021-05-17 11:02:24 +0200
committerMatthias Beyer <matthias.beyer@atos.net>2021-05-18 14:27:12 +0200
commitaef74e56afe695f39e6ce38588a4ddbed9cf1817 (patch)
tree8fce9468e43a1e6ffe663540fe8ede18ca20151a
parentd4b010cfef5cba1a037a0c3a0d45a314501d979e (diff)
Fix typo in help message
Signed-off-by: Matthias Beyer <matthias.beyer@atos.net> (cherry picked from commit fcc2a8f770464e58646e965a86b544767a6cec91)
-rw-r--r--src/cli.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cli.rs b/src/cli.rs
index c13e93f..d077adb 100644
--- a/src/cli.rs
+++ b/src/cli.rs
@@ -38,21 +38,21 @@ pub fn cli<'a>() -> App<'a> {
.multiple(false)
.long("db-url")
.value_name("HOST")
- .about("Overwrite the database host set via configuration. Can also be overriden via environment, but this setting has presendence.")
+ .about("Overwrite the database host set via configuration. Can also be overriden via environment, but this setting has precedence.")
)
.arg(Arg::new("database_port")
.required(false)
.multiple(false)
.long("db-port")
.value_name("PORT")
- .about("Overwrite the database port set via configuration. Can also be overriden via environment, but this setting has presendence.")
+ .about("Overwrite the database port set via configuration. Can also be overriden via environment, but this setting has precedence.")
)
.arg(Arg::new("database_user")
.required(false)
.multiple(false)
.long("db-user")
.value_name("USER")
- .about("Overwrite the database user set via configuration. Can also be overriden via environment, but this setting has presendence.")
+ .about("Overwrite the database user set via configuration. Can also be overriden via environment, but this setting has precedence.")
)
.arg(Arg::new("database_password")
.required(false)
@@ -60,14 +60,14 @@ pub fn cli<'a>() -> App<'a> {
.long("db-password")
.alias("db-pw")
.value_name("PASSWORD")
- .about("Overwrite the database password set via configuration. Can also be overriden via environment, but this setting has presendence.")
+ .about("Overwrite the database password set via configuration. Can also be overriden via environment, but this setting has precedence.")
)
.arg(Arg::new("database_name")
.required(false)
.multiple(false)
.long("db-name")
.value_name("NAME")
- .about("Overwrite the database name set via configuration. Can also be overriden via environment, but this setting has presendence.")
+ .about("Overwrite the database name set via configuration. Can also be overriden via environment, but this setting has precedence.")
)
.subcommand(App::new("generate-completions")