aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechnoweenie <technoweenie@567b1171-46fb-0310-a4c9-b4bef9110e78>2008-01-22 09:01:32 +0000
committertechnoweenie <technoweenie@567b1171-46fb-0310-a4c9-b4bef9110e78>2008-01-22 09:01:32 +0000
commit95249fa82f5db13077779c2315d6ba146b2d5def (patch)
tree051a45b93e306d9043a4bba9cd0fd7e1c4c1b88e
parent1462f90157a365e0eec8f6f31db3f207b4d9d414 (diff)
fix typo [Malesca]
git-svn-id: http://svn.techno-weenie.net/projects/plugins/acts_as_versioned@3092 567b1171-46fb-0310-a4c9-b4bef9110e78
-rw-r--r--lib/acts_as_versioned.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/acts_as_versioned.rb b/lib/acts_as_versioned.rb
index 8043b9cba..b69abbe4d 100644
--- a/lib/acts_as_versioned.rb
+++ b/lib/acts_as_versioned.rb
@@ -22,7 +22,7 @@
module ActiveRecord #:nodoc:
module Acts #:nodoc:
# Specify this act if you want to save a copy of the row in a versioned table. This assumes there is a
- # versioned table ready and that your model has a version field. This works with optimisic locking if the lock_version
+ # versioned table ready and that your model has a version field. This works with optimistic locking if the lock_version
# column is present as well.
#
# The class for the versioned model is derived the first time it is seen. Therefore, if you change your database schema you have to restart