audit: missing spaces added in blocks order report

Closes Homebrew/homebrew#41783.

Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
This commit is contained in:
Baptiste Fontaine 2015-07-16 20:33:15 +02:00
parent 05c0fcb5ee
commit 6303ff7e28

View File

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