1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2025-03-15 16:29:34 +00:00

(trunk libT) trivial commit fixing typo in the comments from r12297

This commit is contained in:
Jordan Lee 2011-04-07 06:54:03 +00:00
parent 07e60d1fc0
commit 7cef8dc8a8

View file

@ -300,7 +300,7 @@ get_next_scrape_time( int interval )
const time_t now = tr_time( );
/* Add the interval, and then increment to the nearest 10th second.
* The latter step is to increas the odds of several torrents coming
* The latter step is to increase the odds of several torrents coming
* due at the same time to improve multiscrape. */
return (now+interval) + (10-((now+interval)%10));
}