Small fix in readme file.

This commit is contained in:
Renato Silva 2014-07-27 08:49:49 -03:00
parent ce37a808f1
commit d5aa1fd9a9
1 changed files with 0 additions and 1 deletions

View File

@ -49,7 +49,6 @@ puts "Option specified: --some-boolean" if $options[:some_boolean]
# Parameter option
value = $options[:some_value]
if value
value = $options[:some_value]
type = value.is_a?(Fixnum)? "number" : "string"
puts "Option specified: --some-value is #{value} (a #{type})"
end