From 591c222d87b1d8bde57782a4a8e8cb81a3685d9d Mon Sep 17 00:00:00 2001 From: Hel Gibbons Date: Mon, 10 Oct 2022 14:20:16 +0100 Subject: [PATCH 1/2] add missing = in config example --- examples/main.py | 2 +- main.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/main.py b/examples/main.py index 121191a..68b555f 100644 --- a/examples/main.py +++ b/examples/main.py @@ -4,7 +4,7 @@ # following two lines to it: # # WIFI_SSID = "" -# WIFI_PASSWORD "" +# WIFI_PASSWORD = "" # # with your wifi details instead of and . diff --git a/main.py b/main.py index 121191a..68b555f 100644 --- a/main.py +++ b/main.py @@ -4,7 +4,7 @@ # following two lines to it: # # WIFI_SSID = "" -# WIFI_PASSWORD "" +# WIFI_PASSWORD = "" # # with your wifi details instead of and . From e12142820f60ca581873e13daa5c6720311f3e9c Mon Sep 17 00:00:00 2001 From: Hel Gibbons Date: Mon, 10 Oct 2022 14:21:48 +0100 Subject: [PATCH 2/2] fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a1d77a..c6cd277 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,7 @@ assuming the correctness of incoming requests. --- ## Function reference - + ### server module The `server` module provides all functionality for running a web server with @@ -307,7 +307,7 @@ or ``` -While a bit unweildy this methods works. An alternative would be to select the appropriate +While a bit unwieldy this methods works. An alternative would be to select the appropriate value in your handler and simply pass it into the template as a parameter however that would mean having some of your copy embedded into your Python code rather than all of it in one place in the template file.