From 6303ff7e28f50413adb5c31d5a306baf2fac8a8e Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Thu, 16 Jul 2015 20:33:15 +0200 Subject: [PATCH] audit: missing spaces added in blocks order report Closes Homebrew/homebrew#41783. Signed-off-by: Baptiste Fontaine --- Library/Homebrew/cmd/audit.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index b161213060..d51e18f493 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