pluralize the word 'Formula' in reports

Closes Homebrew/homebrew#15321.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Christian Schlensker 2012-10-05 13:43:07 -07:00 committed by Adam Vandenberg
parent dbdf2c78c3
commit a6003d08f6

View File

@ -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