Skip to content

Commit 6bab812

Browse files
author
Alexander Weber
committed
author
1 parent 250a78b commit 6bab812

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "complate"
33
version = "0.0.0"
4-
authors = ["Heiko Alexander Weber <haw@voidpointergroup.com>"]
4+
authors = ["Alexander Weber <aw@voidpointergroup.com>"]
55
edition = "2018"
66
license = "MIT"
77
description = "Standardizing messages the right way."

src/args/mod.rs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ impl CallArgs {
2424
return Err(std::io::Error::new(
2525
std::io::ErrorKind::Other,
2626
"value overrides is an experimental feature and needs the respective flag to be active",
27-
))
27+
));
2828
}
2929
#[allow(unreachable_code)]
3030
Ok(())
@@ -82,7 +82,7 @@ impl ClapArgumentLoader {
8282
let command = clap::App::new("complate")
8383
.version(env!("CARGO_PKG_VERSION"))
8484
.about("A rusty text templating application for CLIs.")
85-
.author("Weber, Heiko Alexander <haw@voidpointergroup.com>")
85+
.author("Weber, Alexander <aw@voidpointergroup.com>")
8686
.arg(clap::Arg::with_name("experimental")
8787
.short("e")
8888
.long("experimental")
@@ -181,7 +181,8 @@ impl ClapArgumentLoader {
181181
None => ShellTrust::None,
182182
};
183183

184-
let mut value_overrides: std::collections::HashMap<String, String> = std::collections::HashMap::new();
184+
let mut value_overrides: std::collections::HashMap<String, String> =
185+
std::collections::HashMap::new();
185186
if let Some(values_overrides_arg) = x.values_of("value") {
186187
for vo in values_overrides_arg {
187188
let spl: Vec<&str> = vo.splitn(2, "=").collect();

0 commit comments

Comments
 (0)