diff options
author | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-04-14 12:16:22 +0530 |
---|---|---|
committer | Prathamesh Sonpatki <csonpatki@gmail.com> | 2013-04-14 12:17:03 +0530 |
commit | 2026bb1026572d8ae5e5bdfb8f19d9af3e7f4128 (patch) | |
tree | 94cc408ca4a3aeb5aa643f717cf97fef13478f51 /guides | |
parent | 130d3a06ade83aec27cf1d2ff841dce9e0ad4dfd (diff) | |
download | rails-2026bb1026572d8ae5e5bdfb8f19d9af3e7f4128.tar.gz rails-2026bb1026572d8ae5e5bdfb8f19d9af3e7f4128.tar.bz2 rails-2026bb1026572d8ae5e5bdfb8f19d9af3e7f4128.zip |
Changed grammar for better readability
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 101a4f5b42..fd4c663420 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -2216,7 +2216,7 @@ NOTE: Defined in `active_support/core_ext/array/conversions.rb`. The method `to_formatted_s` acts like `to_s` by default. -If the array contains items that respond to `id`, however, it may be passed the symbol `:db` as argument. That's typically used with collections of ARs. Returned strings are: +If the array contains items that respond to `id`, however, the symbol `:db` may be passed as argument. That's typically used with collections of ActiveRecord objects. Returned strings are: ```ruby [].to_formatted_s(:db) # => "null" |