aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew
diff options
context:
space:
mode:
authorAdam Vandenberg2013-07-09 09:06:12 -0700
committerAdam Vandenberg2013-07-09 09:06:12 -0700
commita90ec1ae80a4cf33fcff66be1830c603b6fddf16 (patch)
treea3f42eba04e6e40906dcb7e42955ce3bc45a7b44 /Library/Homebrew
parent6a83404fd537205f0894acce6f9224df765fb25d (diff)
downloadbrew-a90ec1ae80a4cf33fcff66be1830c603b6fddf16.tar.bz2
fix comment typo
Diffstat (limited to 'Library/Homebrew')
-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