Skip to content

Commit 088f64a

Browse files
authored
Fix typo in docs
1 parent cb87b3d commit 088f64a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_httpserver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ def route(self, path: str, method: str = "GET"):
289289
@server.route(path, method)
290290
def route_func(request):
291291
raw_text = request.raw_request.decode("utf8")
292-
print("Received a request of length", len(raw_test), "bytes")
292+
print("Received a request of length", len(raw_text), "bytes")
293293
return HTTPResponse(body="hello world")
294294
295295
"""

0 commit comments

Comments
 (0)