diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-01 03:19:56 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2013-12-01 03:20:39 -0500 |
commit | 49ff20d9b164693ed7fee880b69cc14b141678b3 (patch) | |
tree | d67506d8a9a223fc2b52e8e072744f4c94b9f11e /activerecord/lib | |
parent | e8523be4ac9074dc05dbd3f4dd5ac705bfd3b9a6 (diff) | |
download | rails-49ff20d9b164693ed7fee880b69cc14b141678b3.tar.gz rails-49ff20d9b164693ed7fee880b69cc14b141678b3.tar.bz2 rails-49ff20d9b164693ed7fee880b69cc14b141678b3.zip |
Use genderless pronouns in API docs
Diffstat (limited to 'activerecord/lib')
-rw-r--r-- | activerecord/lib/active_record/validations/uniqueness.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/validations/uniqueness.rb b/activerecord/lib/active_record/validations/uniqueness.rb index e2b132ca81..bdb42c3724 100644 --- a/activerecord/lib/active_record/validations/uniqueness.rb +++ b/activerecord/lib/active_record/validations/uniqueness.rb @@ -204,7 +204,7 @@ module ActiveRecord # exception. You can either choose to let this error propagate (which # will result in the default Rails exception page being shown), or you # can catch it and restart the transaction (e.g. by telling the user - # that the title already exists, and asking him to re-enter the title). + # that the title already exists, and asking them to re-enter the title). # This technique is also known as # {optimistic concurrency control}[http://en.wikipedia.org/wiki/Optimistic_concurrency_control]. # |