diff --git a/docs/topics/http/decorators.txt b/docs/topics/http/decorators.txt
index 09ffecb..a7a9fba 100644
a
|
b
|
Allowed HTTP methods
|
11 | 11 | ==================== |
12 | 12 | |
13 | 13 | The following decorators in :mod:`django.views.decorators.http` can be used to |
14 | | restrict access to views based on the request method. |
| 14 | restrict access to views based on the request method. This decorators will return |
| 15 | a :class:`django.http.HttpResponseNotAllowed` if the conditions are not met. |
| 16 | |
15 | 17 | |
16 | 18 | .. function:: require_http_methods(request_method_list) |
17 | 19 | |