Skip to content
Snippets Groups Projects
Commit 4a52bf1c authored by Jack Nagel's avatar Jack Nagel
Browse files

Use each_key instead of keys.each

parent 3320b156
No related branches found
No related tags found
No related merge requests found
......@@ -857,7 +857,7 @@ def check_for_linked_keg_only_brews
You may wish to `brew unlink` these brews:
EOS
warnings.keys.each{ |f| s << " #{f}\n" }
warnings.each_key { |f| s << " #{f}\n" }
s
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment