aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2011-11-22 17:12:37 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2011-11-22 17:12:37 +0530
commit8cae31c800f281212c9c5b5ac0ea2be98c4aa611 (patch)
tree3cb0464365315648da5e5e4c2e7e582541815daf /activesupport/lib
parent8f57bf207ff4f28fa8da4544ebc573007b65439d (diff)
downloadrails-8cae31c800f281212c9c5b5ac0ea2be98c4aa611.tar.gz
rails-8cae31c800f281212c9c5b5ac0ea2be98c4aa611.tar.bz2
rails-8cae31c800f281212c9c5b5ac0ea2be98c4aa611.zip
remove nodoc on OrderedHash
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/ordered_hash.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/ordered_hash.rb b/activesupport/lib/active_support/ordered_hash.rb
index 0264133581..b0d4f2bd86 100644
--- a/activesupport/lib/active_support/ordered_hash.rb
+++ b/activesupport/lib/active_support/ordered_hash.rb
@@ -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