docs: Fix typo in writing-views.md.

This commit is contained in:
Pranjal Vyas
2018-11-12 06:26:56 +05:30
committed by Tim Abbott
parent f812b76c3b
commit f729840040

View File

@@ -72,7 +72,7 @@ def accounts_register(request):
# type: (HttpRequest) -> HttpResponse
```
This decorator ensures that the requst was a POST--here, we're
This decorator ensures that the request was a POST--here, we're
checking that the registration submission page is requested with a
post, and inside the function, we'll check the form data. If you
request this page with GET, you'll get a HTTP 405 METHOD NOT ALLOWED