mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
[skip ci] Fix typos in guides
This commit is contained in:
parent
575839d75f
commit
a290294175
2 changed files with 2 additions and 2 deletions
|
@ -348,7 +348,7 @@ Another example would be if you wanted multiple workers handling the same proces
|
|||
Similar to the `:begin_at` option, `:end_at` allows you to configure the last ID of the sequence whenever the highest ID is not the one you need.
|
||||
This would be useful, for example, if you wanted to run a batch process, using a subset of records based on `:begin_at` and `:end_at`
|
||||
|
||||
For example, to send newsletters only to users with the primary key starting from 2000 upto 10000 and to retrieve them in batches of 1000:
|
||||
For example, to send newsletters only to users with the primary key starting from 2000 up to 10000 and to retrieve them in batches of 1000:
|
||||
|
||||
```ruby
|
||||
User.find_each(begin_at: 2000, end_at: 10000, batch_size: 5000) do |user|
|
||||
|
|
|
@ -921,7 +921,7 @@ focus on serving application code as fast as possible.
|
|||
#### Set up a CDN to Serve Static Assets
|
||||
|
||||
To set up your CDN you have to have your application running in production on
|
||||
the internet at a publically available URL, for example `example.com`. Next
|
||||
the internet at a publicly available URL, for example `example.com`. Next
|
||||
you'll need to sign up for a CDN service from a cloud hosting provider. When you
|
||||
do this you need to configure the "origin" of the CDN to point back at your
|
||||
website `example.com`, check your provider for documentation on configuring the
|
||||
|
|
Loading…
Reference in a new issue