aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/diagnostic.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/diagnostic.rb')
-rw-r--r--Library/Homebrew/diagnostic.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/diagnostic.rb b/Library/Homebrew/diagnostic.rb
index 0b32f64c7..19148a6ae 100644
--- a/Library/Homebrew/diagnostic.rb
+++ b/Library/Homebrew/diagnostic.rb
@@ -69,7 +69,7 @@ module Homebrew
end
def inject_file_list(list, string)
- list.inject(string) { |a, e| a << " #{e}\n" }
+ list.inject(string) { |acc, elem| acc << " #{elem}\n" }
end
############# END HELPERS