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
parent
commit
1f641962d2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      templates/docs/python.html
  2. +1
    -1
      templates/docs/python.md

+ 1
- 1
templates/docs/python.html View File

@ -10,7 +10,7 @@
</code></pre></div> </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> <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> <span class="kn">import</span> <span class="nn">urllib.request</span>


+ 1
- 1
templates/docs/python.md View File

@ -12,7 +12,7 @@ except requests.RequestException as e:
print("Ping failed: %s" % 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 ```python
import socket import socket


Loading…
Cancel
Save