summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSerdar Sutay <serdar@opscode.com>2014-10-21 11:11:30 -0700
committerSerdar Sutay <serdar@opscode.com>2014-10-21 11:11:30 -0700
commitadfaf6ce192a4520716ce3827d33c7110221bff9 (patch)
treef1c26f5aaa32c3e0ead6b24e20faa436f6c300f3
parent9a1dd31e8d13524602aacb737762875fd2a4a713 (diff)
parentf83a22f89e16890a6007c5e5f712cb8459649f22 (diff)
downloadchef-adfaf6ce192a4520716ce3827d33c7110221bff9.tar.gz
Merge pull request #2246 from rottenbytes/annoying_space
aesthetics: that trailing space missing makes me uncomfortable
-rw-r--r--lib/chef/knife/core/ui.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/chef/knife/core/ui.rb b/lib/chef/knife/core/ui.rb
index f3ecfbcae8..00a4834638 100644
--- a/lib/chef/knife/core/ui.rb
+++ b/lib/chef/knife/core/ui.rb
@@ -209,11 +209,11 @@ class Chef
def confirmation_instructions(default_choice)
case default_choice
when true
- '? (Y/n)'
+ '? (Y/n) '
when false
- '? (y/N)'
+ '? (y/N) '
else
- '? (Y/N)'
+ '? (Y/N) '
end
end