remove nodoc on OrderedHash

This commit is contained in:
Vijay Dev 2011-11-22 17:12:37 +05:30
parent 8f57bf207f
commit 8cae31c800
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ module ActiveSupport
# oh.keys # => [:a, :b], this order is guaranteed
#
# <tt>ActiveSupport::OrderedHash</tt> is namespaced to prevent conflicts with other implementations.
class OrderedHash < ::Hash #:nodoc:
class OrderedHash < ::Hash
def to_yaml_type
"!tag:yaml.org,2002:omap"
end