From 56375a7b44af55ca7062768f77d6d19c1b2a06bf Mon Sep 17 00:00:00 2001 From: Dominyk Tiller Date: Mon, 16 May 2016 18:46:47 +0100 Subject: [PATCH] audit: minor spacing nit Closes #248. Signed-off-by: Dominyk Tiller --- Library/Homebrew/cmd/audit.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb index 77670ad11f..c42603f4d8 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