From 523e98dabe01842b9103fdb750237f5a6275963b Mon Sep 17 00:00:00 2001 From: Victor Mireyev Date: Fri, 19 Feb 2016 17:32:01 +0300 Subject: [PATCH] Fix typo in docstring --- scrapy/utils/reactor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/utils/reactor.py b/scrapy/utils/reactor.py index a99063a61..83186a372 100644 --- a/scrapy/utils/reactor.py +++ b/scrapy/utils/reactor.py @@ -19,7 +19,7 @@ def listen_tcp(portrange, host, factory): class CallLaterOnce(object): """Schedule a function to be called in the next reactor loop, but only if - it hasn't been already scheduled since the last time it run. + it hasn't been already scheduled since the last time it ran. """ def __init__(self, func, *a, **kw):