summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNell Shamrell <nellshamrell@gmail.com>2015-05-28 16:50:46 -0700
committerKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-06-26 16:22:50 -0400
commit31c8b51b26e4e630f577fe36fefe1259e22e1d2d (patch)
tree6ae81c9e95761873efa16c8b0c0b7c9628d232c8
parent0c13df2195b6cd8bbb6a02f64c43c0b7e993fc6f (diff)
downloadchef-31c8b51b26e4e630f577fe36fefe1259e22e1d2d.tar.gz
correcting minor typo in user_edit knife action
-rw-r--r--lib/chef/knife/user_edit.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/chef/knife/user_edit.rb b/lib/chef/knife/user_edit.rb
index dd2fc02743..d194f6697b 100644
--- a/lib/chef/knife/user_edit.rb
+++ b/lib/chef/knife/user_edit.rb
@@ -57,7 +57,6 @@ EOF
end
original_user = Chef::User.load(@user_name).to_hash
-
# DEPRECATION NOTE
# Remove this if statement and corrosponding code post OSC 11 support.
#
@@ -73,7 +72,7 @@ EOF
user.update
ui.msg("Saved #{user}.")
else
- ui.msg("User unchaged, not saving.")
+ ui.msg("User unchanged, not saving.")
end
end