From a70a80511146ec35d9da82f678a0d36efe5c72d4 Mon Sep 17 00:00:00 2001 From: Kyungdahm Yun Date: Tue, 16 Dec 2014 00:20:54 -0800 Subject: [PATCH] Capitalize descriptions of --HEAD, --devel Closes Homebrew/homebrew#35027. Signed-off-by: Jack Nagel --- Library/Homebrew/cmd/options.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/options.rb b/Library/Homebrew/cmd/options.rb index ba03abb669..1cfbbef7b7 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