aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2013-07-09 09:06:12 -0700
committerAdam Vandenberg2013-07-09 09:06:12 -0700
commitbdb3267f5584fe4276b0fbd3cb999f42ace8bdb0 (patch)
treee92f73467f9441c71743a4b5dc5216050c1bcefb /Library
parentd5aa01fc985ec02d4aabcd2b702ad9159339f8c2 (diff)
downloadhomebrew-bdb3267f5584fe4276b0fbd3cb999f42ace8bdb0.tar.bz2
fix comment typo
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/build_options.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/build_options.rb b/Library/Homebrew/build_options.rb
index 077a8b3d8..18285a7a5 100644
--- a/Library/Homebrew/build_options.rb
+++ b/Library/Homebrew/build_options.rb
@@ -93,7 +93,7 @@ class BuildOptions
def implicit_options
implicit = unused_options.map do |o|
if o.name =~ /^with-(.+)$/ && without?($1)
- Option.new("without-#{$1}") # we loose the description, but that's ok
+ Option.new("without-#{$1}") # we lose the description, but that's ok
elsif o.name =~ /^without-(.+)$/ && with?($1)
Option.new("with-#{$1}")
end