aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 06:27:07 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-07-22 06:27:07 +0000
commit1aab0e2c30510acb0dbaf3a2f76bea0971709461 (patch)
treee290527057fa4d8458e8f414c9449808dc7a132d /activerecord
parentdcf5caf59670e2542bfeba1da46515ee5aa5fa19 (diff)
downloadrails-1aab0e2c30510acb0dbaf3a2f76bea0971709461.tar.gz
rails-1aab0e2c30510acb0dbaf3a2f76bea0971709461.tar.bz2
rails-1aab0e2c30510acb0dbaf3a2f76bea0971709461.zip
Doc fixes #1775, #1776 [jon@instance-design.co.uk]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1878 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord')
-rwxr-xr-xactiverecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 936e61a688..8420fe2ffe 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -208,7 +208,7 @@ module ActiveRecord #:nodoc:
# * +ActiveRecordError+ -- generic error class and superclass of all other errors raised by Active Record
# * +AdapterNotSpecified+ -- the configuration hash used in <tt>establish_connection</tt> didn't include a
# <tt>:adapter</tt> key.
- # * +AdapterNotSpecified+ -- the <tt>:adapter</tt> key used in <tt>establish_connection</tt> specified an non-existent adapter
+ # * +AdapterNotFound+ -- the <tt>:adapter</tt> key used in <tt>establish_connection</tt> specified an non-existent adapter
# (or a bad spelling of an existing one).
# * +AssociationTypeMismatch+ -- the object assigned to the association wasn't of the type specified in the association definition.
# * +SerializationTypeMismatch+ -- the object serialized wasn't of the class specified as the second parameter.