fix comment typo

This commit is contained in:
Adam Vandenberg 2013-07-09 09:06:12 -07:00
parent 6a83404fd5
commit a90ec1ae80

View File

@ -93,7 +93,7 @@ class BuildOptions
def implicit_options def implicit_options
implicit = unused_options.map do |o| implicit = unused_options.map do |o|
if o.name =~ /^with-(.+)$/ && without?($1) 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) elsif o.name =~ /^without-(.+)$/ && with?($1)
Option.new("with-#{$1}") Option.new("with-#{$1}")
end end