From e7947f4f92aaca36a34cf5ad3fd90bd8075dfd9f Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 10 Nov 2011 19:43:12 -0600 Subject: [PATCH] doctor: minor grammatical fix Signed-off-by: Jack Nagel --- Library/Homebrew/cmd/doctor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb index ae7b5ea4d3..9bfc9b3087 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