aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorMike Gunderloy <MikeG1@larkfarm.com>2008-12-10 05:56:22 -0600
committerMike Gunderloy <MikeG1@larkfarm.com>2008-12-10 05:56:22 -0600
commit1b6a8287397f1cdb2eebed1947450ed3a280fb4d (patch)
treeb920e3ad9573a56d8464b6af15943f94caca92ea /activerecord/lib
parent5745b25c9f71d86458f2d1cda65f800cbe4e6733 (diff)
downloadrails-1b6a8287397f1cdb2eebed1947450ed3a280fb4d.tar.gz
rails-1b6a8287397f1cdb2eebed1947450ed3a280fb4d.tar.bz2
rails-1b6a8287397f1cdb2eebed1947450ed3a280fb4d.zip
Fix bad RDoc markup on update_all.
Diffstat (limited to 'activerecord/lib')
-rwxr-xr-xactiverecord/lib/active_record/base.rb3
1 files changed, 1 insertions, 2 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index 78f0652eb4..5ee74ac2d9 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -811,8 +811,7 @@ module ActiveRecord #:nodoc:
#
# ==== Parameters
#
- # * +updates+ - A string of column and value pairs that will be set on any records that match conditions.
- # What goes into the SET clause.
+ # * +updates+ - A string of column and value pairs that will be set on any records that match conditions. This creates the SET clause of the generated SQL.
# * +conditions+ - An SQL fragment like "administrator = 1" or [ "user_name = ?", username ]. See conditions in the intro for more info.
# * +options+ - Additional options are <tt>:limit</tt> and <tt>:order</tt>, see the examples for usage.
#