aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib
diff options
context:
space:
mode:
authorVipul A M <vipulnsward@gmail.com>2013-09-17 11:51:44 +0530
committerVipul A M <vipulnsward@gmail.com>2013-09-17 11:51:44 +0530
commita594817dad144156c94d1ff5a06eb5ce1d9bd74c (patch)
tree57a6eec8c6cf990f5d0deef81a1aa39695bb392c /activerecord/lib
parent3c23cacb6fe8d1ed235ad5350bdc049183942833 (diff)
downloadrails-a594817dad144156c94d1ff5a06eb5ce1d9bd74c.tar.gz
rails-a594817dad144156c94d1ff5a06eb5ce1d9bd74c.tar.bz2
rails-a594817dad144156c94d1ff5a06eb5ce1d9bd74c.zip
`skiping` => `skipping`
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