aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2013-03-01 15:18:29 +0100
committerYves Senn <yves.senn@gmail.com>2013-03-01 15:18:29 +0100
commitce7133bf520ea3f2b731448e8c697ed330340bb2 (patch)
tree5bc699af38161353fc589bd3267d230bc68f3f94 /activerecord/lib/active_record
parentb49a2a779ba6deba108d1f842ab5b7bc7460aa14 (diff)
downloadrails-ce7133bf520ea3f2b731448e8c697ed330340bb2.tar.gz
rails-ce7133bf520ea3f2b731448e8c697ed330340bb2.tar.bz2
rails-ce7133bf520ea3f2b731448e8c697ed330340bb2.zip
don't use non-ascii ' chars in documentation
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/associations/collection_proxy.rb8
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