diff options
| author | Larry Gilbert | 2015-06-07 11:49:41 -0700 |
|---|---|---|
| committer | Dominyk Tiller | 2015-06-10 17:44:00 +0100 |
| commit | 69b629b041ccc285ee53def870f2da7e8882536b (patch) | |
| tree | 4bc792ab9834b218d70c5652f5e5775a58cbe35a /Library/Homebrew/cmd | |
| parent | a631ae19836bbe130983bf7070bbb5858a8a44c6 (diff) | |
| download | brew-69b629b041ccc285ee53def870f2da7e8882536b.tar.bz2 | |
Various edits for punctuation, grammar, spelling, etc.
Closes Homebrew/homebrew#40478.
Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 3334b6bfe..8d129cde5 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -195,12 +195,12 @@ class FormulaAuditor full_name = formula.full_name if @@aliases.include? name - problem "Formula name is conflicted with existed aliases." + problem "Formula name conflicts with existing aliases." return end if !formula.core_formula? && Formula.core_names.include?(name) - problem "Formula name is conflicted with existed core formula." + problem "Formula name conflicts with existing core formula." return end @@ -217,7 +217,7 @@ class FormulaAuditor same_name_tap_formulae.delete(full_name) if same_name_tap_formulae.size > 0 - problem "Formula name is conflicted with #{same_name_tap_formulae.join ", "}" + problem "Formula name conflicts with #{same_name_tap_formulae.join ", "}" end end @@ -355,7 +355,7 @@ class FormulaAuditor end # Freedesktop is complicated to handle - It has SSL/TLS, but only on certain subdomains. - # To enable https Freedesktop change the url from http://project.freedesktop.org/wiki to + # To enable https Freedesktop change the URL from http://project.freedesktop.org/wiki to # https://wiki.freedesktop.org/project_name. # "Software" is redirected to https://wiki.freedesktop.org/www/Software/project_name if homepage =~ %r[^http://((?:www|nice|libopenraw|liboil|telepathy|xorg)\.)?freedesktop\.org/(?:wiki/)?] @@ -511,7 +511,7 @@ class FormulaAuditor if line =~ /# if this fails, try separate make\/make install steps/ problem "Please remove default template comments" end - if line =~ /# The url of the archive/ + if line =~ /# The URL of the archive/ problem "Please remove default template comments" end if line =~ /## Naming --/ @@ -848,7 +848,7 @@ class ResourceAuditor end if version.to_s =~ /_\d+$/ - problem "version #{version} should not end with a underline and a number" + problem "version #{version} should not end with an underline and a number" end end |
