etcdctl/ctlv3: fix spell errors

This commit is contained in:
Gyu-Ho Lee
2016-08-13 20:54:27 -07:00
parent d788eb8d92
commit 6b671b88dc
4 changed files with 4 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ func NewLockCommand() *cobra.Command {
func lockCommandFunc(cmd *cobra.Command, args []string) {
if len(args) != 1 {
ExitWithError(ExitBadArgs, errors.New("lock takes one lock name arguement."))
ExitWithError(ExitBadArgs, errors.New("lock takes one lock name argument."))
}
c := mustClientFromCmd(cmd)
if err := lockUntilSignal(c, args[0]); err != nil {