aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2008-08-12 20:47:48 +0200
committerXavier Noria <fxn@hashref.com>2008-08-12 20:47:48 +0200
commit99352fc49ae28334de2e56ad07286f99dbd2bca5 (patch)
treebb7f17b71532c8b8472c66d7488e64ac2417efae
parent8c300ebde2826de09d1b6af2df482276a771560d (diff)
downloadrails-99352fc49ae28334de2e56ad07286f99dbd2bca5.tar.gz
rails-99352fc49ae28334de2e56ad07286f99dbd2bca5.tar.bz2
rails-99352fc49ae28334de2e56ad07286f99dbd2bca5.zip
An string -> A string
-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 5b70529bf9..d73d424339 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -757,7 +757,7 @@ module ActiveRecord #:nodoc:
#
# ==== Attributes
#
- # * +updates+ - An string of column and value pairs that will be set on any records that match conditions.
+ # * +updates+ - A string of column and value pairs that will be set on any records that match conditions.
# What goes into the SET clause.
# * +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.