aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorMikhail Dieterle <MikDiet@gmail.com>2015-04-23 09:10:40 +0300
committerMikhail Dieterle <MikDiet@gmail.com>2015-04-23 09:10:40 +0300
commit16c51bc84a4ad1864949ef97e8d3739020863871 (patch)
tree54df304031902a6b37986227500cbe56b155386a /guides
parent571e8bc98c7ae4e209ac87010706e3bd7120f787 (diff)
downloadrails-16c51bc84a4ad1864949ef97e8d3739020863871.tar.gz
rails-16c51bc84a4ad1864949ef97e8d3739020863871.tar.bz2
rails-16c51bc84a4ad1864949ef97e8d3739020863871.zip
[ci skip] fix count of options for `find_each`
Diffstat (limited to 'guides')
-rw-r--r--guides/source/active_record_querying.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md
index de976acd01..fe6418deb8 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -317,7 +317,7 @@ end
The `find_each` method accepts most of the options allowed by the regular `find` method, except for `:order` and `:limit`, which are reserved for internal use by `find_each`.
-Two additional options, `:batch_size` and `:begin_at`, are available as well.
+Three additional options, `:batch_size`, `:begin_at` and `:end_at`, are available as well.
**`:batch_size`**