diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-01-11 20:18:37 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-01-13 00:41:12 +0530 |
commit | 0119740d91b3190ed34633105f95168fcc7917d8 (patch) | |
tree | 4788bc8a07deb773d93e018e697d7ddd80c37730 /activesupport | |
parent | 8e064269616660181c7d011f74aa6410907a8548 (diff) | |
download | rails-0119740d91b3190ed34633105f95168fcc7917d8.tar.gz rails-0119740d91b3190ed34633105f95168fcc7917d8.tar.bz2 rails-0119740d91b3190ed34633105f95168fcc7917d8.zip |
fixes in api docs
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/hash/indifferent_access.rb | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/json/encoding.rb | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb index f4cb445444..7d54c9fae6 100644 --- a/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb +++ b/activesupport/lib/active_support/core_ext/hash/indifferent_access.rb @@ -14,7 +14,7 @@ class Hash # #with_indifferent_access. This method will be called on the current object # by the enclosing object and is aliased to #with_indifferent_access by # default. Subclasses of Hash may overwrite this method to return +self+ if - # converting to an +ActiveSupport::HashWithIndifferentAccess+ would not be + # converting to an <tt>ActiveSupport::HashWithIndifferentAccess</tt> would not be # desirable. # # b = {:b => 1} diff --git a/activesupport/lib/active_support/json/encoding.rb b/activesupport/lib/active_support/json/encoding.rb index 0e1bf4c40b..fcd83f8dea 100644 --- a/activesupport/lib/active_support/json/encoding.rb +++ b/activesupport/lib/active_support/json/encoding.rb @@ -148,8 +148,8 @@ class Object end end -class Struct - def as_json(options = nil) #:nodoc: +class Struct #:nodoc: + def as_json(options = nil) Hash[members.zip(values)] end end |