lib/parameters/param.rb in parameters-0.1.0 vs lib/parameters/param.rb in parameters-0.1.1
- old
+ new
@@ -9,10 +9,10 @@
#
# Creates a new Param object with the specified _name_ and the given
# _description_.
#
- def initialize(name,description='')
+ def initialize(name,description=nil)
@name = name.to_sym
@description = description
end
end