diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-02 00:34:52 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-02 00:34:52 -0500 |
commit | 5827824a6fdc210165cec15f1aa65879493d0d7a (patch) | |
tree | b93a9c386c1ee1f9a0db329a873199141ea0b7e8 /activerecord/lib/active_record | |
parent | d2e1caaab977829ad20a1e9a10abf87bd8e3e53f (diff) | |
download | rails-5827824a6fdc210165cec15f1aa65879493d0d7a.tar.gz rails-5827824a6fdc210165cec15f1aa65879493d0d7a.tar.bz2 rails-5827824a6fdc210165cec15f1aa65879493d0d7a.zip |
Cleanups in API docs: his => their
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r-- | activerecord/lib/active_record/validations/uniqueness.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/validations/uniqueness.rb b/activerecord/lib/active_record/validations/uniqueness.rb index bdb42c3724..7ebe9dfec0 100644 --- a/activerecord/lib/active_record/validations/uniqueness.rb +++ b/activerecord/lib/active_record/validations/uniqueness.rb @@ -174,11 +174,11 @@ module ActiveRecord # WHERE title = 'My Post' | # | # | # User 2 does the same thing and also - # | # infers that his title is unique. + # | # infers that their title is unique. # | SELECT * FROM comments # | WHERE title = 'My Post' # | - # # User 1 inserts his comment. | + # # User 1 inserts their comment. | # INSERT INTO comments | # (title, content) VALUES | # ('My Post', 'hi!') | |