From c39b97f400a8ef6f454bda01952a205d290520f9 Mon Sep 17 00:00:00 2001 From: zea-vtl <157722075+zea-vtl@users.noreply.github.com> Date: Thu, 16 Jan 2025 09:27:41 +0100 Subject: [PATCH] Update README.md fixed a typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d61fbd8b4..3dd276e20 100644 --- a/README.md +++ b/README.md @@ -204,7 +204,7 @@ from words_app.logic import calculate_points def view(request: HttpRequest) -> HttpResponse: user_word: str = request.POST['word'] # just an example - points = calculate_points(user_words)(settings) # passing the dependencies + points = calculate_points(user_word)(settings) # passing the dependencies ... # later you show the result to user somehow # Somewhere in your `words_app/logic.py`: