aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2013-11-13 20:19:35 -0800
committerAdam Vandenberg2013-11-13 20:23:27 -0800
commit7df136cd50f4d5a621cc8bc4bbdeaf4b3216e627 (patch)
treed91e8768ce157e55e614971e5593bc0561a60098 /Library/Homebrew
parent0ece9135eb1b714d4348bdc052cf3a212177632e (diff)
downloadbrew-7df136cd50f4d5a621cc8bc4bbdeaf4b3216e627.tar.bz2
grammar edits
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/blacklist.rb2
-rw-r--r--Library/Homebrew/requirements/python_dependency.rb4
2 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/blacklist.rb b/Library/Homebrew/blacklist.rb
index 4f981fa8b..c63c15437 100644
--- a/Library/Homebrew/blacklist.rb
+++ b/Library/Homebrew/blacklist.rb
@@ -32,7 +32,7 @@ def blacklisted? name
sudo easy_install pip
EOS
when 'pil' then <<-EOS.undent
- Instead of PIL, consider to `pip install pillow` or `brew install samueljohn/python/pillow`.
+ Instead of PIL, consider `pip install pillow` or `brew install samueljohn/python/pillow`.
EOS
when 'macruby' then <<-EOS.undent
MacRuby works better when you install their package:
diff --git a/Library/Homebrew/requirements/python_dependency.rb b/Library/Homebrew/requirements/python_dependency.rb
index ff1d0ba67..b15d7f706 100644
--- a/Library/Homebrew/requirements/python_dependency.rb
+++ b/Library/Homebrew/requirements/python_dependency.rb
@@ -85,7 +85,7 @@ class PythonDependency < Requirement
ENV['PYTHONPATH'] = nil
@unsatisfied_because = ''
if binary.nil? || !binary.executable?
- @unsatisfied_because += "No `#{@python}` found in your PATH! Consider to `brew install #{@python}`."
+ @unsatisfied_because += "No `#{@python}` found in your PATH. To install with Homebrew use `brew install #{@python}`."
false
elsif pypy?
@unsatisfied_because += "Your #{@python} executable appears to be a PyPy, which is not supported."
@@ -97,7 +97,7 @@ class PythonDependency < Requirement
@unsatisfied_because += "Python version #{version} is too old (need at least #{@min_version})."
false
elsif @min_version.major == 2 && `python -c "import sys; print(sys.version_info[0])"`.strip == "3"
- @unsatisfied_because += "Your `python` points to a Python 3.x. This is not supported."
+ @unsatisfied_because += "Your `python` points to Python 3.x; this is not supported."
false
else
@imports.keys.all? do |module_name|