aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2013-09-28 23:28:16 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2013-09-28 23:28:16 +0530
commit33434f69c44d622b760eca78c5631dfce8c4ad54 (patch)
tree233f270b21b082403e6547b572887446535e0128 /activerecord/lib
parentfa915461bc4892b8d53d3d4e202ba16f0dbdfe12 (diff)
parente2a7dbfe30e18cedb26a872ba0e1de4b95b513c4 (diff)
downloadrails-33434f69c44d622b760eca78c5631dfce8c4ad54.tar.gz
rails-33434f69c44d622b760eca78c5631dfce8c4ad54.tar.bz2
rails-33434f69c44d622b760eca78c5631dfce8c4ad54.zip
Merge branch 'master' of github.com:rails/docrails
Diffstat (limited to 'activerecord/lib')
-rw-r--r--activerecord/lib/active_record/relation/batches.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/relation/batches.rb b/activerecord/lib/active_record/relation/batches.rb
index fd8496442e..49b01909c6 100644
--- a/activerecord/lib/active_record/relation/batches.rb
+++ b/activerecord/lib/active_record/relation/batches.rb
@@ -34,7 +34,7 @@ module ActiveRecord
# between id 0 and 10,000 and worker 2 handle from 10,000 and beyond
# (by setting the +:start+ option on that worker).
#
- # # Let's process for a batch of 2000 records, skiping the first 2000 rows
+ # # Let's process for a batch of 2000 records, skipping the first 2000 rows
# Person.find_each(start: 2000, batch_size: 2000) do |person|
# person.party_all_night!
# end