@@ -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