aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
diff options
context:
space:
mode:
authorMarkus Reiter2016-09-20 15:11:33 +0200
committerMarkus Reiter2016-09-23 15:30:05 +0200
commit59212445da7048233ef32705433e548783fcf84b (patch)
treed1ff519490652760f5c37aa55032d82482ebbda1 /Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
parentb957a1b7e6c1305617cff429f16f73f0c8ec604c (diff)
downloadbrew-59212445da7048233ef32705433e548783fcf84b.tar.bz2
Run `rubocop —auto-correct`.
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/cli/uninstall.rb')
-rw-r--r--Library/Homebrew/cask/lib/hbc/cli/uninstall.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb b/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
index ae15414b7..2ce9b7d4d 100644
--- a/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
+++ b/Library/Homebrew/cask/lib/hbc/cli/uninstall.rb
@@ -28,8 +28,8 @@ class Hbc::CLI::Uninstall < Hbc::CLI::Base
single = versions.count == 1
puts <<-EOS.undent
- #{cask_token} #{versions.join(', ')} #{single ? 'is' : 'are'} still installed.
- Remove #{single ? 'it' : 'them all'} with `brew cask uninstall --force #{cask_token}`.
+ #{cask_token} #{versions.join(", ")} #{single ? "is" : "are"} still installed.
+ Remove #{single ? "it" : "them all"} with `brew cask uninstall --force #{cask_token}`.
EOS
end
end