diff options
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index 209fe8bad..2c027a52e 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -183,7 +183,7 @@ module Homebrew            puts "To install it, run:\n  brew install #{formulae_search_results.first}"          else            puts "These similarly named formulae were found:" -          puts_columns(formulae_search_results) +          puts Formatter.columns(formulae_search_results)            puts "To install one of them, run (for example):\n  brew install #{formulae_search_results.first}"          end @@ -198,7 +198,7 @@ module Homebrew            puts "To install it, run:\n  brew install #{taps_search_results.first}"          else            puts "These formulae were found in taps:" -          puts_columns(taps_search_results) +          puts Formatter.columns(taps_search_results)            puts "To install one of them, run (for example):\n  brew install #{taps_search_results.first}"          end        end | 
