aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2013-06-12 14:48:16 -0500
committerJack Nagel2013-06-12 14:48:16 -0500
commitd1a1a3b031ae2f8ac2d131046c86fe004a8b2505 (patch)
tree30e31ad37bb1a31be5d95fb63f399aa5872a27e6 /Library
parent1d1c292bcb462332945d601751d63def9e516360 (diff)
downloadbrew-d1a1a3b031ae2f8ac2d131046c86fe004a8b2505.tar.bz2
Rename method
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/search.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cmd/search.rb b/Library/Homebrew/cmd/search.rb
index 85022888b..b5942298e 100644
--- a/Library/Homebrew/cmd/search.rb
+++ b/Library/Homebrew/cmd/search.rb
@@ -14,7 +14,7 @@ module Homebrew extend self
else
query = ARGV.first
rx = query_regexp(query)
- search_results = search_brews rx
+ search_results = search_formulae rx
puts_columns search_results
if not query.to_s.empty? and $stdout.tty? and msg = blacklisted?(query)
@@ -80,7 +80,7 @@ module Homebrew extend self
results
end
- def search_brews rx
+ def search_formulae rx
if rx.to_s.empty?
Formula.names
else