diff options
| author | Kyungdahm Yun | 2014-12-16 00:20:54 -0800 | 
|---|---|---|
| committer | Jack Nagel | 2014-12-16 12:22:29 -0500 | 
| commit | a70a80511146ec35d9da82f678a0d36efe5c72d4 (patch) | |
| tree | 9e84421efb3e7bbc5012e8c500059bae599b5267 /Library/Homebrew/cmd/options.rb | |
| parent | 1c3a810830633d962c038eb8eff09b9f17c6b702 (diff) | |
| download | brew-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.rb | 4 | 
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 | 
