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

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