diff options
| author | L. E. Segovia | 2018-01-29 13:43:21 +0000 | 
|---|---|---|
| committer | L. E. Segovia | 2018-01-29 13:43:21 +0000 | 
| commit | 4c5e3d04e1914f98c326e5bcd3b22acd4a54c782 (patch) | |
| tree | 8e101b342b70badf2fb26b9fed5d56c42c03c548 | |
| parent | 691caf4b54bb17d183aefc48e0a39bbaa0d19739 (diff) | |
| download | brew-4c5e3d04e1914f98c326e5bcd3b22acd4a54c782.tar.bz2 | |
Fix @reitermarkus's comments
| -rw-r--r-- | Library/Homebrew/cask/lib/hbc/cli/doctor.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Homebrew/cask/lib/hbc/cli/doctor.rb b/Library/Homebrew/cask/lib/hbc/cli/doctor.rb index ff4a37bcf..1ad5eaff5 100644 --- a/Library/Homebrew/cask/lib/hbc/cli/doctor.rb +++ b/Library/Homebrew/cask/lib/hbc/cli/doctor.rb @@ -17,7 +17,7 @@ module Hbc        end        def summary_header -        "Cask's Doctor checkup" +        "Cask's Doctor Checkup"        end        def run @@ -29,7 +29,7 @@ module Hbc          check_environment_variables          puts summary unless success? -        raise CaskError, "Your system is not ready for Cask." unless success? +        raise CaskError, "There are some problems with your setup." unless success?        end        def check_software_versions | 
