diff options
| author | Christian Schlensker | 2012-10-05 13:43:07 -0700 | 
|---|---|---|
| committer | Adam Vandenberg | 2012-10-05 20:16:06 -0700 | 
| commit | a6003d08f61f4ddbffc83dc6edebbcdeb048208b (patch) | |
| tree | 19e553ec04a762c4b28cb84b55ef8328ae2af478 /Library | |
| parent | dbdf2c78c3d011383af20240c154cba9858ec65e (diff) | |
| download | brew-a6003d08f61f4ddbffc83dc6edebbcdeb048208b.tar.bz2 | |
pluralize the word 'Formula' in reports
Closes Homebrew/homebrew#15321.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/update.rb | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/update.rb b/Library/Homebrew/cmd/update.rb index 9e091d52f..c15dfa042 100644 --- a/Library/Homebrew/cmd/update.rb +++ b/Library/Homebrew/cmd/update.rb @@ -129,10 +129,10 @@ class Report < Hash    def dump      # Key Legend: Added (A), Copied (C), Deleted (D), Modified (M), Renamed (R) -    dump_formula_report :A, "New Formula" -    dump_formula_report :M, "Updated Formula" -    dump_formula_report :D, "Deleted Formula" -    dump_formula_report :R, "Renamed Formula" +    dump_formula_report :A, "New Formulae" +    dump_formula_report :M, "Updated Formulae" +    dump_formula_report :D, "Deleted Formulae" +    dump_formula_report :R, "Renamed Formulae"  #    dump_new_commands  #    dump_deleted_commands    end  | 
