aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_querying.md
diff options
context:
space:
mode:
authorAditya Kapoor <adityakapoor.mait@gmail.com>2018-07-31 13:26:02 +0530
committerAditya Kapoor <adityakapoor.mait@gmail.com>2018-07-31 13:26:02 +0530
commitb1b585fe08c65c0f9bf76ee5c48aebc8e5488187 (patch)
tree91d29e2c44855b592da0b8c0587d6a15611135f2 /guides/source/active_record_querying.md
parentcd2fe237f76d9d121c7f57d2de89b1445268de0f (diff)
downloadrails-b1b585fe08c65c0f9bf76ee5c48aebc8e5488187.tar.gz
rails-b1b585fe08c65c0f9bf76ee5c48aebc8e5488187.tar.bz2
rails-b1b585fe08c65c0f9bf76ee5c48aebc8e5488187.zip
[ci skip] Fix the outdated description for `find_each`.
Diffstat (limited to 'guides/source/active_record_querying.md')
-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 6233708ad5..a2890b9b7a 100644
--- a/guides/source/active_record_querying.md
+++ b/guides/source/active_record_querying.md
@@ -368,7 +368,7 @@ end
**`:start`**
-By default, records are fetched in ascending order of the primary key, which must be an integer. The `:start` option allows you to configure the first ID of the sequence whenever the lowest ID is not the one you need. This would be useful, for example, if you wanted to resume an interrupted batch process, provided you saved the last processed ID as a checkpoint.
+By default, records are fetched in ascending order of the primary key. The `:start` option allows you to configure the first ID of the sequence whenever the lowest ID is not the one you need. This would be useful, for example, if you wanted to resume an interrupted batch process, provided you saved the last processed ID as a checkpoint.
For example, to send newsletters only to users with the primary key starting from 2000: