aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/descriptions.rb
diff options
context:
space:
mode:
authorMarkus Reiter2016-09-21 14:36:20 +0200
committerMarkus Reiter2016-09-23 15:30:07 +0200
commit4861ee6c2d5bdda8ae155a1fb1f4c66ff562732d (patch)
tree471e3d19f7c31165b415a82660da0c08604efac4 /Library/Homebrew/descriptions.rb
parent0406f918a67c75559f926f6372a6d8aed5b18d1e (diff)
downloadbrew-4861ee6c2d5bdda8ae155a1fb1f4c66ff562732d.tar.bz2
Fix Style/Semicolon.
Diffstat (limited to 'Library/Homebrew/descriptions.rb')
-rw-r--r--Library/Homebrew/descriptions.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/descriptions.rb b/Library/Homebrew/descriptions.rb
index 24e342474..0ef4316d3 100644
--- a/Library/Homebrew/descriptions.rb
+++ b/Library/Homebrew/descriptions.rb
@@ -136,6 +136,6 @@ class Descriptions
def short_name_counts
@short_name_counts ||=
- short_names.values.each_with_object(Hash.new(0)) { |name, counts| counts[name] += 1; counts }
+ short_names.values.each_with_object(Hash.new(0)) { |name, counts| counts[name] += 1 }
end
end