From a90ec1ae80a4cf33fcff66be1830c603b6fddf16 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Tue, 9 Jul 2013 09:06:12 -0700 Subject: [PATCH] fix comment typo --- Library/Homebrew/build_options.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/build_options.rb b/Library/Homebrew/build_options.rb index 077a8b3d85..18285a7a5e 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