Skip to content

Commit

Permalink
Update README.md (#2014)
Browse files Browse the repository at this point in the history
fixed a typo
  • Loading branch information
zea-vtl authored Jan 16, 2025
1 parent b044946 commit 68efc9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`:
Expand Down

0 comments on commit 68efc9d

Please sign in to comment.