From 4e31793d0e4fd425e32526f3d015fb6cefc91cc7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 6 Oct 2019 15:38:06 +0200 Subject: [PATCH] Typo --- README.md | 2 +- index.html | 2 +- web/index_for_pdf.html | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80935aa..ed8b3e0 100644 --- a/README.md +++ b/README.md @@ -2217,7 +2217,7 @@ Coroutine ### Helper Decorator * **All coroutines must first be "primed" by calling `'next()'`.** * **Remembering to call next() is easy to forget.** -* **Solved by wrapping coroutine functions with a following decorator:** +* **Solved by wrapping coroutine functions with the following decorator:** ```python def coroutine(func): diff --git a/index.html b/index.html index 638ee86..fd6f7fc 100644 --- a/index.html +++ b/index.html @@ -1918,7 +1918,7 @@ ValueError: malformed node or string

Helper Decorator

  • All coroutines must first be "primed" by calling 'next(<coroutine>)'.
  • Remembering to call next() is easy to forget.
  • -
  • Solved by wrapping coroutine functions with a following decorator:
  • +
  • Solved by wrapping coroutine functions with the following decorator:
def coroutine(func):
     def out(*args, **kwargs):
         cr = func(*args, **kwargs)
diff --git a/web/index_for_pdf.html b/web/index_for_pdf.html
index 54798bb..4be78e2 100644
--- a/web/index_for_pdf.html
+++ b/web/index_for_pdf.html
@@ -97,7 +97,7 @@
 open function, 22-23
operator module, 31
OS commands, 24-25
-os module, 23, 24-25,

+os module, 23, 24-25

P

partial function, 12
paths, 23-24
@@ -129,7 +129,7 @@ splat operator, 10-11
statistics module, 7
strings, 5
-struct module, 28-29
+struct module, 28-29
subprocess module, 25
synthesizer, 41
sys module, 15, 21, 22, 22