summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlyssa Ross <hi+services.github@alyssa.is>2017-01-14 18:18:01 +0000
committerGitHub <noreply@github.com>2017-01-14 18:18:01 +0000
commit85870856aa5cd5eea701bff0702a0d1db7a56138 (patch)
tree216310f2121fc98ec98b0200b3075cff3f14bed9
parentfeb038f67b1e9d7751dc1e5a6327e6c627ece639 (diff)
downloadbundler-85870856aa5cd5eea701bff0702a0d1db7a56138.tar.gz
viz: fix capitalisation of Homebrew
Homebrew capitalises its name — see http://brew.sh.
-rw-r--r--lib/bundler/cli/viz.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/viz.rb b/lib/bundler/cli/viz.rb
index 75e6affff9..418c462a93 100644
--- a/lib/bundler/cli/viz.rb
+++ b/lib/bundler/cli/viz.rb
@@ -21,7 +21,7 @@ module Bundler
rescue StandardError => e
raise unless e.message =~ /GraphViz not installed or dot not in PATH/
Bundler.ui.error e.message
- Bundler.ui.warn "Please install GraphViz. On a Mac with homebrew, you can run `brew install graphviz`."
+ Bundler.ui.warn "Please install GraphViz. On a Mac with Homebrew, you can run `brew install graphviz`."
end
end
end