aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomK32 <tomk32@tomk32.de>2008-05-16 11:12:30 +0200
committerTomK32 <tomk32@tomk32.de>2008-05-16 11:12:30 +0200
commitf16c22040d5b66cb285fbd9a90858294376192bb (patch)
tree5c9381b0bea68ff6b258de70a2779659b99232f6
parente9a0526d5b3fc28a81eb47dfb5f6086112d90362 (diff)
downloadrails-f16c22040d5b66cb285fbd9a90858294376192bb.tar.gz
rails-f16c22040d5b66cb285fbd9a90858294376192bb.tar.bz2
rails-f16c22040d5b66cb285fbd9a90858294376192bb.zip
it looks a bit strange as code, and it's not that extremely important
-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 7999eec55d..1c1a3d6bc4 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -710,8 +710,7 @@ module ActiveRecord #:nodoc:
# ==== Attributes
#
# * +updates+ - A String of column and value pairs that will be set on any records that match conditions.
- # * +conditions+ - An SQL fragment like "administrator = 1" or [ "user_name = ?", username ].
- # See conditions in the intro for more info.
+ # * +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/or <tt>:order</tt>, see the examples for usage.
#
# ==== Examples