diff options
| author | Baptiste Fontaine | 2015-07-16 20:33:15 +0200 | 
|---|---|---|
| committer | Baptiste Fontaine | 2015-07-18 10:45:47 +0200 | 
| commit | 6303ff7e28f50413adb5c31d5a306baf2fac8a8e (patch) | |
| tree | a6e78768ec06a7a28e3023657d0e6742f291cc7b /Library/Homebrew/cmd/audit.rb | |
| parent | 05c0fcb5eeeb696e2b9d0aaea1095f83cffa64b5 (diff) | |
| download | brew-6303ff7e28f50413adb5c31d5a306baf2fac8a8e.tar.bz2 | |
audit: missing spaces added in blocks order report
Closes Homebrew/homebrew#41783.
Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
Diffstat (limited to 'Library/Homebrew/cmd/audit.rb')
| -rw-r--r-- | Library/Homebrew/cmd/audit.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index b16121306..d51e18f49 100644 --- a/Library/Homebrew/cmd/audit.rb +++ b/Library/Homebrew/cmd/audit.rb @@ -184,7 +184,7 @@ class FormulaAuditor        [lineno, name]      end.compact.each_cons(2) do |c1, c2|        unless c1[0] < c2[0] -        problem "`#{c1[1]}`(line #{c1[0]}) should be put before `#{c2[1]}`(line #{c2[0]})" +        problem "`#{c1[1]}` (line #{c1[0]}) should be put before `#{c2[1]}` (line #{c2[0]})"        end      end    end  | 
