lib/sass/tree/node.rb in haml-2.2.15 vs lib/sass/tree/node.rb in haml-2.2.16
- old
+ new
@@ -34,19 +34,19 @@
attr_writer :filename
# The options hash for the node.
# See {file:SASS_REFERENCE.md#sass_options the Sass options documentation}.
#
- # @return [Hash<Symbol, Object>]
+ # @return [{Symbol => Object}]
attr_reader :options
def initialize
@children = []
end
# Sets the options hash for the node and all its children.
#
- # @param options [Hash<Symbol, Object>] The options
+ # @param options [{Symbol => Object}] The options
# @see #options
def options=(options)
children.each {|c| c.options = options}
@options = options
end