aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/ordered_options.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/ordered_options.rb')
-rw-r--r--activesupport/lib/active_support/ordered_options.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/ordered_options.rb b/activesupport/lib/active_support/ordered_options.rb
index 5b44b9ed99..c9518bda79 100644
--- a/activesupport/lib/active_support/ordered_options.rb
+++ b/activesupport/lib/active_support/ordered_options.rb
@@ -1,4 +1,4 @@
-module ActiveSupport #:nodoc:
+module ActiveSupport
# Usually key value pairs are handled something like this:
#
# h = {}
@@ -7,7 +7,7 @@ module ActiveSupport #:nodoc:
# h[:boy] # => 'John'
# h[:girl] # => 'Mary'
#
- # Using <tt>OrderedOptions</tt>, the above code could be reduced to:
+ # Using +OrderedOptions+, the above code could be reduced to:
#
# h = ActiveSupport::OrderedOptions.new
# h.boy = 'John'