aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-11-10 19:43:12 -0600
committerJack Nagel2011-11-10 19:49:26 -0600
commit2c4747066d5896da2107fe9ec9a48784de2d3938 (patch)
treeac874e18e09ad4ffc14d6bd441c894cbd0b1458a /Library
parent290c81f5f468672281aafa7db3f08395d92a716e (diff)
downloadhomebrew-2c4747066d5896da2107fe9ec9a48784de2d3938.tar.bz2
doctor: minor grammatical fix
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index ae7b5ea4d..9bfc9b308 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -752,7 +752,7 @@ end
def check_git_status
status_cmd = "git --git-dir=#{HOMEBREW_REPOSITORY}/.git --work-tree=#{HOMEBREW_PREFIX} status -s #{HOMEBREW_PREFIX}/Library/Homebrew"
if system "/usr/bin/which -s git" and File.directory? HOMEBREW_REPOSITORY+'.git' and not `#{status_cmd}`.empty?
- ohai "You have uncommitted modifications to Homebrew core"
+ ohai "You have uncommitted modifications to Homebrew's core."
puts "Unless you know what you are doing, you should: git reset --hard"
puts
end