Minor: Fix typo.

This commit is contained in:
Yahnis Elsts 2014-05-17 11:29:33 +03:00
parent 102a7b2e05
commit c43301056e
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ class PluginUpdateChecker_1_5 {
//Check less frequently if it's already known that an update is available.
$timeout = $this->throttledCheckPeriod * 3600;
} else if ( defined('DOING_CRON') && constant('DOING_CRON') ) {
//WordPress cron schedules are not exact, so lets do a n update check even
//WordPress cron schedules are not exact, so lets do an update check even
//if slightly less than $checkPeriod hours have elapsed since the last check.
$cronFuzziness = 20 * 60;
$timeout = $this->checkPeriod * 3600 - $cronFuzziness;