From 1f641962d268b4fb3cfe5e46e05fd78ff9c983d5 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 28 Dec 2020 21:30:58 +1100 Subject: [PATCH] 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`. --- templates/docs/python.html | 2 +- templates/docs/python.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/docs/python.html b/templates/docs/python.html index 23031cfb..4056685f 100644 --- a/templates/docs/python.html +++ b/templates/docs/python.html @@ -10,7 +10,7 @@ -

Otherwise, you can use the urllib module from Python 3 standard libary:

+

Otherwise, you can use the urllib module from Python 3 standard library:

import socket
 import urllib.request
 
diff --git a/templates/docs/python.md b/templates/docs/python.md
index 4c1484e4..2e643870 100644
--- a/templates/docs/python.md
+++ b/templates/docs/python.md
@@ -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