aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorDominyk Tiller2016-06-30 18:25:21 +0100
committerDominyk Tiller2016-07-01 04:31:02 +0100
commite3b6c96b5dbb3529832f19347781bc2cedd6ab5a (patch)
treefc282e9c905cbf1554240eb460bce192be4444a9 /Library
parent3e309d4643ab52ce823b8733d72f8665133dbf5e (diff)
downloadbrew-e3b6c96b5dbb3529832f19347781bc2cedd6ab5a.tar.bz2
requirement: update cask wording
We now have "magic" to automatically handle `brew cask` and `brew bundle` calls without needing to tap those taps manually beforehand. Let's reflect that in this wording for consistency. Closes #427. Signed-off-by: Dominyk Tiller <dominyktiller@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/requirement.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/requirement.rb b/Library/Homebrew/requirement.rb
index 0e8cb59a8..fd726be20 100644
--- a/Library/Homebrew/requirement.rb
+++ b/Library/Homebrew/requirement.rb
@@ -33,10 +33,10 @@ class Requirement
def message
s = ""
if cask
- s += <<-EOS.undent
+ s += <<-EOS.undent
You can install with Homebrew Cask:
- brew install Caskroom/cask/#{cask}
+ brew cask install #{cask}
EOS
end