aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/options.rb
diff options
context:
space:
mode:
authorKyungdahm Yun2014-12-16 00:20:54 -0800
committerJack Nagel2014-12-16 12:22:29 -0500
commita70a80511146ec35d9da82f678a0d36efe5c72d4 (patch)
tree9e84421efb3e7bbc5012e8c500059bae599b5267 /Library/Homebrew/cmd/options.rb
parent1c3a810830633d962c038eb8eff09b9f17c6b702 (diff)
downloadbrew-a70a80511146ec35d9da82f678a0d36efe5c72d4.tar.bz2
Capitalize descriptions of --HEAD, --devel
Closes Homebrew/homebrew#35027. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Homebrew/cmd/options.rb')
-rw-r--r--Library/Homebrew/cmd/options.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/options.rb b/Library/Homebrew/cmd/options.rb
index ba03abb66..1cfbbef7b 100644
--- a/Library/Homebrew/cmd/options.rb
+++ b/Library/Homebrew/cmd/options.rb
@@ -29,7 +29,7 @@ module Homebrew
f.options.sort_by(&:flag).each do |opt|
puts "#{opt.flag}\n\t#{opt.description}"
end
- puts "--devel\n\tinstall development version #{f.devel.version}" if f.devel
- puts "--HEAD\n\tinstall HEAD version" if f.head
+ puts "--devel\n\tInstall development version #{f.devel.version}" if f.devel
+ puts "--HEAD\n\tInstall HEAD version" if f.head
end
end