lib/hashable/hash.rb in hashable-0.1.1 vs lib/hashable/hash.rb in hashable-0.1.2
- old
+ new
@@ -3,10 +3,10 @@
class Hash
include Hashable
# Return recursively hash representation of the given hash
#
- # @return Base object instance variables in a Hash
+ # @return hash
def to_deep_hash
hash = {}
self.keys.each do |key|
hash[key] = deeply_to_hash(self[key])
end
\ No newline at end of file