Fix some very minor typo's

This commit is contained in:
Mark Mulder 2012-04-18 10:53:56 +03:00
parent b2c481bef7
commit b79841b6b3
1 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@
```ruby
Sidekiq.configure_client do |config|
require 'sidekiq/middleware/client/unique_jobs'
cnfig.client_middleware do |chain|
config.client_middleware do |chain|
chain.add Sidekiq::Middleware::Client::UniqueJobs
end
end
@ -46,7 +46,7 @@ get to this big milestone!
-----------
- Implement "safe shutdown". The messages for any workers that
are stil busy when we hit the TERM timeout will be requeued in
are still busy when we hit the TERM timeout will be requeued in
Redis so the messages are not lost when the Sidekiq process exits.
[#110]
- Work around Celluloid's small 4kb stack limit [#115]