From 45787bdd0e9ec20b111e570a20b5f66a949b400c Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 23 Feb 2009 12:20:37 +0100 Subject: Fix docs --- activerecord/lib/active_record/batches.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'activerecord/lib/active_record/batches.rb') diff --git a/activerecord/lib/active_record/batches.rb b/activerecord/lib/active_record/batches.rb index 7747655984..9e9c8fbbf4 100644 --- a/activerecord/lib/active_record/batches.rb +++ b/activerecord/lib/active_record/batches.rb @@ -7,7 +7,7 @@ module ActiveRecord # When processing large numbers of records, it's often a good idea to do so in batches to prevent memory ballooning. module ClassMethods # Yields each record that was found by the find +options+. The find is performed by find_in_batches - # with a batch size of 1000 (or as specified by the +limit+ option). + # with a batch size of 1000 (or as specified by the +batch_size+ option). # # Example: # @@ -27,7 +27,7 @@ module ActiveRecord end # Yields each batch of records that was found by the find +options+ as an array. The size of each batch is - # set by the +limit+ option; the default is 1000. + # set by the +batch_size+ option; the default is 1000. # # You can control the starting point for the batch processing by supplying the +start+ option. This is especially # useful if you want multiple workers dealing with the same processing queue. You can make worker 1 handle all the -- cgit v1.2.3