diff options
author | Mikhail Dieterle <MikDiet@gmail.com> | 2013-07-28 16:36:26 +0300 |
---|---|---|
committer | Mikhail Dieterle <MikDiet@gmail.com> | 2013-07-28 16:36:26 +0300 |
commit | b1b589cab603c4d96d01e8de938a2a1534643f1e (patch) | |
tree | 05f3ac6c89ef45e64cc2291cbec54869ef6a8d25 /guides/source | |
parent | 741fdbfcf487180dd51f72bbb37a56d5538a85b4 (diff) | |
download | rails-b1b589cab603c4d96d01e8de938a2a1534643f1e.tar.gz rails-b1b589cab603c4d96d01e8de938a2a1534643f1e.tar.bz2 rails-b1b589cab603c4d96d01e8de938a2a1534643f1e.zip |
Using markdown-style code quotes
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index f39fae060e..421916d448 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -421,9 +421,9 @@ NOTE: Defined in `active_support/core_ext/object/with_options.rb`. ### JSON support -Active Support provides a better implemention of `to_json` than the +json+ gem ordinarily provides for Ruby objects. This is because some classes, like +Hash+ and +OrderedHash+ needs special handling in order to provide a proper JSON representation. +Active Support provides a better implemention of `to_json` than the `json` gem ordinarily provides for Ruby objects. This is because some classes, like `Hash` and `OrderedHash` needs special handling in order to provide a proper JSON representation. -Active Support also provides an implementation of `as_json` for the <tt>Process::Status</tt> class. +Active Support also provides an implementation of `as_json` for the `Process::Status` class. NOTE: Defined in `active_support/core_ext/object/to_json.rb`. |