diff options
author | Yves Senn <yves.senn@gmail.com> | 2013-03-01 15:18:29 +0100 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2013-03-01 15:18:29 +0100 |
commit | ce7133bf520ea3f2b731448e8c697ed330340bb2 (patch) | |
tree | 5bc699af38161353fc589bd3267d230bc68f3f94 /activerecord | |
parent | b49a2a779ba6deba108d1f842ab5b7bc7460aa14 (diff) | |
download | rails-ce7133bf520ea3f2b731448e8c697ed330340bb2.tar.gz rails-ce7133bf520ea3f2b731448e8c697ed330340bb2.tar.bz2 rails-ce7133bf520ea3f2b731448e8c697ed330340bb2.zip |
don't use non-ascii ' chars in documentation
Diffstat (limited to 'activerecord')
-rw-r--r-- | activerecord/lib/active_record/associations/collection_proxy.rb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/activerecord/lib/active_record/associations/collection_proxy.rb b/activerecord/lib/active_record/associations/collection_proxy.rb index e93e700c93..198298c393 100644 --- a/activerecord/lib/active_record/associations/collection_proxy.rb +++ b/activerecord/lib/active_record/associations/collection_proxy.rb @@ -83,9 +83,9 @@ module ActiveRecord # # #<Pet id: 3, name: "Choo-Choo"> # # ] # - # Be careful because this also means you’re initializing a model - # object with only the fields that you’ve selected. If you attempt - # to access a field that is not in the initialized record you’ll + # Be careful because this also means you're initializing a model + # object with only the fields that you've selected. If you attempt + # to access a field that is not in the initialized record you'll # receive: # # person.pets.select(:name).first.person_id @@ -924,7 +924,7 @@ module ActiveRecord alias_method :to_a, :to_ary # Adds one or more +records+ to the collection by setting their foreign keys - # to the association‘s primary key. Returns +self+, so several appends may be + # to the association's primary key. Returns +self+, so several appends may be # chained together. # # class Person < ActiveRecord::Base |