aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2011-12-17 17:12:19 -0800
committerAdam Vandenberg2011-12-18 16:24:55 -0800
commitf052bcbd62fcb8cd3ccfc2adaf82944f27532eed (patch)
tree09997fa1bb86523fb7d1c5b5e3d0ea6df953d568 /Library/Homebrew
parent807ed361295bd043241248421a45c5baa3e76006 (diff)
downloadbrew-f052bcbd62fcb8cd3ccfc2adaf82944f27532eed.tar.bz2
Simplify a couple of comments
Diffstat (limited to 'Library/Homebrew')
-rw-r--r--Library/Homebrew/formula.rb7
1 files changed, 2 insertions, 5 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 13587fb9a..e020939be 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -149,10 +149,7 @@ class Formula
end
def explicitly_requested?
-
- # `ARGV.formulae` will throw an exception if it comes up with an empty
- # list.
- #
+ # `ARGV.formulae` will throw an exception if it comes up with an empty list.
# FIXME: `ARGV.formulae` shouldn't be throwing exceptions, see issue #8823
return false if ARGV.named.empty?
ARGV.formulae.include? self
@@ -253,7 +250,7 @@ class Formula
# sometimes the clean process breaks things
# skip cleaning paths in a formula with a class method like this:
# skip_clean [bin+"foo", lib+"bar"]
- # redefining skip_clean? in formulas is now deprecated
+ # redefining skip_clean? now deprecated
def skip_clean? path
return true if self.class.skip_clean_all?
to_check = path.relative_path_from(prefix).to_s