From 75d461337ac58c1aa1ca8c9d2597ccde66fdf660 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 28 Dec 2020 09:09:36 +1100 Subject: [PATCH] docs: fix simple typo, libary -> library There is a small typo in templates/docs/python.md. Should read `library` rather than `libary`. --- templates/docs/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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