aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/relation
diff options
context:
space:
mode:
authorGabriel Horner <gabriel.horner@gmail.com>2011-02-03 23:51:06 -0500
committerGabriel Horner <gabriel.horner@gmail.com>2011-02-03 23:51:06 -0500
commitac15647bf0e6ed85714dee4e2b14b2e7e6f29320 (patch)
tree9ebbc5d43dd4945106203a40434677bab04bafda /activerecord/lib/active_record/relation
parenta96a9a494856c57bb8773d8d22bbee176cda9d6e (diff)
downloadrails-ac15647bf0e6ed85714dee4e2b14b2e7e6f29320.tar.gz
rails-ac15647bf0e6ed85714dee4e2b14b2e7e6f29320.tar.bz2
rails-ac15647bf0e6ed85714dee4e2b14b2e7e6f29320.zip
keep options titles consistent to "Options"
Diffstat (limited to 'activerecord/lib/active_record/relation')
-rw-r--r--activerecord/lib/active_record/relation/finder_methods.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/finder_methods.rb b/activerecord/lib/active_record/relation/finder_methods.rb
index e447de92a4..7f32e5538e 100644
--- a/activerecord/lib/active_record/relation/finder_methods.rb
+++ b/activerecord/lib/active_record/relation/finder_methods.rb
@@ -19,7 +19,7 @@ module ActiveRecord
#
# All approaches accept an options hash as their last parameter.
#
- # ==== Parameters
+ # ==== Options
#
# * <tt>:conditions</tt> - An SQL fragment like "administrator = 1", <tt>["user_name = ?", username]</tt>,
# or <tt>["user_name = :user_name", { :user_name => user_name }]</tt>. See conditions in the intro.