aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorHongli Lai (Phusion) <hongli@phusion.nl>2008-09-20 14:20:28 +0200
committerHongli Lai (Phusion) <hongli@phusion.nl>2008-09-20 14:20:28 +0200
commit86b745654ced08b20df8be8bfd724cef607c9844 (patch)
treee78e10b68e1e42bad21b7319786a1e12b4488288 /activerecord
parent3efea3df4fcccea7cf6b85bee127cbc549f5685b (diff)
downloadrails-86b745654ced08b20df8be8bfd724cef607c9844.tar.gz
rails-86b745654ced08b20df8be8bfd724cef607c9844.tar.bz2
rails-86b745654ced08b20df8be8bfd724cef607c9844.zip
Fix another typo.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/validations.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/validations.rb b/activerecord/lib/active_record/validations.rb
index 3aa3f53e50..73d9b36fc2 100644
--- a/activerecord/lib/active_record/validations.rb
+++ b/activerecord/lib/active_record/validations.rb
@@ -641,7 +641,7 @@ module ActiveRecord
# === Concurrency and integrity
#
# Using this validation method in conjunction with ActiveRecord::Base#save
- # does not guarantee the absense of duplicate record insertions, because
+ # does not guarantee the absence of duplicate record insertions, because
# uniqueness checks on the application level are inherently prone to racing
# conditions. For example, suppose that two users try to post a Comment at
# the same time, and a Comment's title must be unique. At the database-level,