aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorTom Kadwill <tomkadwill@gmail.com>2014-08-26 21:56:04 +0100
committerTom Kadwill <tomkadwill@gmail.com>2014-08-26 21:56:04 +0100
commitd418d4f5e33a35355c5164246d69f9663f8bb693 (patch)
treec4ded134011d0036cb91d768e50bf45b8b36014a /activerecord/lib
parent489ee95fe871d1d886403cc1d6373c5fbae8b4bc (diff)
downloadrails-d418d4f5e33a35355c5164246d69f9663f8bb693.tar.gz
rails-d418d4f5e33a35355c5164246d69f9663f8bb693.tar.bz2
rails-d418d4f5e33a35355c5164246d69f9663f8bb693.zip
[ci skip] Updated documentation syntax of block parameter for rdoc
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/associations/collection_proxy.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb
index afd043424d..8d137a9582 100644
--- a/activerecord/lib/active_record/associations/collection_proxy.rb
+++ b/activerecord/lib/active_record/associations/collection_proxy.rb
@@ -817,7 +817,7 @@ module ActiveRecord
# person.pets.count # => 2
# person.pets.many? # => true
#
- # You can also pass a block to define criteria. The
+ # You can also pass a +block+ to define criteria. The
# behavior is the same, it returns true if the collection
# based on the criteria has more than one record.
#