aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2015-06-26 10:08:41 +0100
committerDominyk Tiller2015-06-27 05:03:45 +0100
commita289d7d2cafd2cf9f1e11e313b64490a6b4c65de (patch)
tree2f3754cebb1d788d592cf0fbd3550c1b2661b64e /Library
parent0341f85b06bc49fe44cd3dae4d2fb18e87efa797 (diff)
downloadbrew-a289d7d2cafd2cf9f1e11e313b64490a6b4c65de.tar.bz2
tab: tweak options info output
Closes Homebrew/homebrew#41101. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/tab.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/tab.rb b/Library/Homebrew/tab.rb
index 85252ab60..432319bf8 100644
--- a/Library/Homebrew/tab.rb
+++ b/Library/Homebrew/tab.rb
@@ -207,7 +207,7 @@ class Tab < OpenStruct
unless used_options.empty?
s << "Installed" if s.empty?
s << "with:"
- s << used_options.to_a.join(", ")
+ s << used_options.to_a.join(" ")
end
s.join(" ")
end