aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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