diff options
author | kwadronaut <kwadronaut@leap.se> | 2015-11-29 23:51:55 +0100 |
---|---|---|
committer | kwadronaut <kwadronaut@leap.se> | 2015-11-29 23:53:17 +0100 |
commit | d133e1fab16cecab4290e8df54cd91b2ede623b3 (patch) | |
tree | 6d660a147a0e3c5db74b79015bc90ffa6eece109 | |
parent | 8c7a2c7d7f84d56f395556aa893d8bb426c24178 (diff) | |
parent | 922217111395cc419bce59540ffcbf7e3ebf064f (diff) |
fix typo documentation leap-cli, closes mr88.
-rw-r--r-- | doc/guide/commands.md | 2 | ||||
-rw-r--r-- | lib/leap_cli/commands/user.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/guide/commands.md b/doc/guide/commands.md index 7d0aa1b2..eaacc8d5 100644 --- a/doc/guide/commands.md +++ b/doc/guide/commands.md @@ -47,7 +47,7 @@ SSH public key file for this new user Default Value: None * `--self` -Add yourself as a trusted sysadin by choosing among the public keys available for the current user. +Add yourself as a trusted sysadmin by choosing among the public keys available for the current user. # leap cert diff --git a/lib/leap_cli/commands/user.rb b/lib/leap_cli/commands/user.rb index 480e9a9c..b842e854 100644 --- a/lib/leap_cli/commands/user.rb +++ b/lib/leap_cli/commands/user.rb @@ -17,7 +17,7 @@ module LeapCli arg_name 'USERNAME' #, :optional => false, :multiple => false command :'add-user' do |c| - c.switch 'self', :desc => 'Add yourself as a trusted sysadin by choosing among the public keys available for the current user.', :negatable => false + c.switch 'self', :desc => 'Add yourself as a trusted sysadmin by choosing among the public keys available for the current user.', :negatable => false c.flag 'ssh-pub-key', :desc => 'SSH public key file for this new user' c.flag 'pgp-pub-key', :desc => 'OpenPGP public key file for this new user' @@ -133,4 +133,4 @@ module LeapCli end end -end
\ No newline at end of file +end |