aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 77670ad11..c42603f4d 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -74,9 +74,9 @@ module Homebrew
problem_count += fa.problems.size
problem_lines = fa.problems.map { |p| "* #{p.chomp.gsub("\n", "\n ")}" }
if ARGV.include? "--display-filename"
- puts problem_lines.map { |s| "#{f.path}: #{s}"}
+ puts problem_lines.map { |s| "#{f.path}: #{s}" }
else
- puts "#{f.full_name}:", problem_lines.map { |s| " #{s}"}
+ puts "#{f.full_name}:", problem_lines.map { |s| " #{s}" }
end
end