README.md in sidetiq-0.1.4 vs README.md in sidetiq-0.1.5

- old
+ new

@@ -108,26 +108,26 @@ # When `true` uses UTC instead of local times (default: false) config.utc = false end ``` -## WEB EXTENSION +## NOTES -Sidetiq includes an extension for Sidekiq's web interface. It will not be -loaded by default, so it will have to be required manually: +By default Sidekiq uses a 15 second polling interval to check if scheduled +jobs are due. If a recurring job has to run more often than that you should +lower this value. ```ruby -require 'sidetiq/web' +Sidekiq.options[:poll_interval] = 1 ``` -### NOTES +## WEB EXTENSION -By default Sidekiq uses a 15 second polling interval to check if scheduled -jobs are due. If a recurring job has to run more often than that you should -lower this value. +Sidetiq includes an extension for Sidekiq's web interface. It will not be +loaded by default, so it will have to be required manually: ```ruby -Sidekiq.options[:poll_interval] = 1 +require 'sidetiq/web' ``` ### SCREENSHOT ![Screenshot](http://f.cl.ly/items/1P2u1v091F3V1n381g2I/Screen%20Shot%202013-02-01%20at%2012.16.17.png)