diff options
| author | Markus Reiter | 2016-10-14 20:08:05 +0200 |
|---|---|---|
| committer | Markus Reiter | 2016-10-23 14:32:03 +0200 |
| commit | 8e9eae695adff40df52e667db30dd4fc318615ef (patch) | |
| tree | 416e080ab6b639042991812f2c6c75a3ab98e4fd /Library/Homebrew/cask/lib/hbc/exceptions.rb | |
| parent | 1a0f8b8a02cfe8795e2128fb294e97bb67fb03f0 (diff) | |
| download | brew-8e9eae695adff40df52e667db30dd4fc318615ef.tar.bz2 | |
Use `()` as delimiters for `%Q` and `%q` literals.
Diffstat (limited to 'Library/Homebrew/cask/lib/hbc/exceptions.rb')
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/exceptions.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/exceptions.rb b/Library/Homebrew/cask/lib/hbc/exceptions.rb index 31310aea5..c323f6c4c 100644 --- a/Library/Homebrew/cask/lib/hbc/exceptions.rb +++ b/Library/Homebrew/cask/lib/hbc/exceptions.rb @@ -23,7 +23,7 @@ module Hbc class CaskAlreadyCreatedError < AbstractCaskErrorWithToken def to_s - %Q{A Cask for #{token} already exists. Run "brew cask cat #{token}" to see it.} + %Q(A Cask for #{token} already exists. Run "brew cask cat #{token}" to see it.) end end |
