summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Szalay <nicolas.szalay@fotolia.com>2014-10-17 14:18:30 +0200
committerNicolas Szalay <nicolas.szalay@fotolia.com>2014-10-17 14:18:36 +0200
commitf83a22f89e16890a6007c5e5f712cb8459649f22 (patch)
tree70a76854c2a45e1c7da11f051a3d1196dd40186c
parent901e8eff95c953b91f597e4d83932d5b8803d31a (diff)
downloadchef-f83a22f89e16890a6007c5e5f712cb8459649f22.tar.gz
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