Skip to content

Commit 3f2b2f0

Browse files
committed
Fix typos in README file
1 parent a983ce1 commit 3f2b2f0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ To read tasks we need to run PyQS. If the task is already in your
7878
7979
$ pyqs email.tasks.send_email
8080
81-
If we want want to run all tasks with a certain prefix. This is based on
81+
If we want to run all tasks with a certain prefix. This is based on
8282
Python's `fnmatch <http://docs.python.org/2/library/fnmatch.html>`__.
8383

8484
.. code:: bash
@@ -130,7 +130,7 @@ PyQS has an event registry which can be used to run a function before or after e
130130
print({"pre_process": context})
131131
132132
def print_post_process(context):
133-
print({"pre_process": context})
133+
print({"post_process": context})
134134
135135
events.register_event("pre_process", print_pre_process)
136136
events.register_event("post_process", print_post_process)

0 commit comments

Comments
 (0)