Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4e31793

Browse files
committed
Typo
1 parent 0f1f4c3 commit 4e31793

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2217,7 +2217,7 @@ Coroutine
22172217
### Helper Decorator
22182218
* **All coroutines must first be "primed" by calling `'next(<coroutine>)'`.**
22192219
* **Remembering to call next() is easy to forget.**
2220-
* **Solved by wrapping coroutine functions with a following decorator:**
2220+
* **Solved by wrapping coroutine functions with the following decorator:**
22212221

22222222
```python
22232223
def coroutine(func):

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1918,7 +1918,7 @@
19181918
</ul><div><h3 id="helperdecorator">Helper Decorator</h3><ul>
19191919
<li><strong>All coroutines must first be "primed" by calling <code class="python hljs"><span class="hljs-string">'next(&lt;coroutine&gt;)'</span></code>.</strong></li>
19201920
<li><strong>Remembering to call next() is easy to forget.</strong></li>
1921-
<li><strong>Solved by wrapping coroutine functions with a following decorator:</strong></li>
1921+
<li><strong>Solved by wrapping coroutine functions with the following decorator:</strong></li>
19221922
</ul><pre><code class="python language-python hljs"><span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">coroutine</span><span class="hljs-params">(func)</span>:</span>
19231923
<span class="hljs-function"><span class="hljs-keyword">def</span> <span class="hljs-title">out</span><span class="hljs-params">(*args, **kwargs)</span>:</span>
19241924
cr = func(*args, **kwargs)

web/index_for_pdf.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ <h3 id="o">O</h3>
9797
<strong>open function, <a href="#open">22</a>-<a href="#file">23</a></strong><br>
9898
<strong>operator module, <a href="#operator">31</a></strong><br>
9999
<strong>OS commands, <a href="#oscommands">24</a>-<a href="#shellcommands">25</a></strong><br>
100-
<strong>os module, <a href="#path">23</a>, <a href="#oscommands">24</a>-<a href="#shellcommands">25</a>, </strong> </p>
100+
<strong>os module, <a href="#path">23</a>, <a href="#oscommands">24</a>-<a href="#shellcommands">25</a></strong> </p>
101101
<h3 id="p">P</h3>
102102
<p><strong>partial function, <a href="#partial">12</a></strong><br>
103103
<strong>paths, <a href="#path">23</a>-<a href="#pathlib">24</a></strong><br>
@@ -129,7 +129,7 @@ <h3 id="s">S</h3>
129129
<strong>splat operator, <a href="#splatoperator">10</a>-<a href="#otheruses">11</a></strong><br>
130130
<strong>statistics module, <a href="#statistics">7</a></strong><br>
131131
<strong>strings, <a href="#string">5</a></strong><br>
132-
<strong>struct module, <a href="#struct">28</a></strong>-<a href="#integertypesusecapitalletterforunsignedtypestandardsizesareinbrackets">29</a></strong><br>
132+
<strong>struct module, <a href="#struct">28</a>-<a href="#integertypesusecapitalletterforunsignedtypestandardsizesareinbrackets">29</a></strong><br>
133133
<strong>subprocess module, <a href="#usingsubprocess">25</a></strong><br>
134134
<strong>synthesizer, <a href="#synthesizer">41</a></strong><br>
135135
<strong>sys module, <a href="#lrucache">15</a>, <a href="#commonbuiltinexceptions">21</a>, <a href="#print">22</a>, <a href="#commandlinearguments">22</a></strong> </p>

0 commit comments

Comments
 (0)