Skip to content

Commit

Permalink
Fix typo in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
SijmenHuizenga committed Feb 12, 2021
1 parent 76ae16c commit c560d3c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/multiple-schedulers.rst
Expand Up @@ -8,7 +8,7 @@ This is supported:
.. code-block:: python
import time
import scheduler
import schedule
def fooJob():
print("Foo")
Expand All @@ -26,4 +26,4 @@ This is supported:
# Create as many schedulers as you need
scheduler2 = Scheduler()
scheduler2.every().second.do(fooJob)
scheduler2.every().second.do(barJob)
scheduler2.every().second.do(barJob)

0 comments on commit c560d3c

Please sign in to comment.