Browse Source
docs: fix simple typo, libary -> library (#464)
Fix simple typo in docs, libary -> library
There is a small typo in templates/docs/python.md.
Should read `library` rather than `libary`.
pull/468/head
Tim Gates
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
templates/docs/python.html
-
templates/docs/python.md
|
|
@ -10,7 +10,7 @@ |
|
|
|
</code></pre></div> |
|
|
|
|
|
|
|
|
|
|
|
<p>Otherwise, you can use the urllib module from Python 3 standard libary:</p> |
|
|
|
<p>Otherwise, you can use the urllib module from Python 3 standard library:</p> |
|
|
|
<div class="python highlight"><pre><span></span><code><span class="kn">import</span> <span class="nn">socket</span> |
|
|
|
<span class="kn">import</span> <span class="nn">urllib.request</span> |
|
|
|
|
|
|
|
|
|
@ -12,7 +12,7 @@ except requests.RequestException as e: |
|
|
|
print("Ping failed: %s" % e) |
|
|
|
``` |
|
|
|
|
|
|
|
Otherwise, you can use the urllib module from Python 3 standard libary: |
|
|
|
Otherwise, you can use the urllib module from Python 3 standard library: |
|
|
|
|
|
|
|
```python |
|
|
|
import socket |
|
|
|