aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2014-09-02 11:49:53 +0100
committerMike McQuaid2014-09-02 11:50:00 +0100
commitd3150f3a06bde15c7371f18f2bae2d9dd576fc93 (patch)
treee7dbbcb65d145606831cb317d5a2aaff8313700d /Library
parentfe1bf57a1547bec01c80f42c75ee2e3d9afa0bb1 (diff)
downloadbrew-d3150f3a06bde15c7371f18f2bae2d9dd576fc93.tar.bz2
audit: fix line number typo.
Closes Homebrew/homebrew#32031.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/audit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 1bd324922..6dd70cd67 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -567,7 +567,7 @@ class FormulaAuditor
audit_conflicts
audit_patches
audit_text
- text.split("\n").each_with_index { |line, lineno| audit_line(line+1, lineno) }
+ text.split("\n").each_with_index {|line, lineno| audit_line(line, lineno+1) }
audit_installed
end