Browse Source

Fixed typo in docs/ref/request-response.txt.

aruseni 7 years ago
parent
commit
ad524980ac
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/ref/request-response.txt

+ 1 - 1
docs/ref/request-response.txt

@@ -384,7 +384,7 @@ Methods
 .. class:: QueryDict
 .. class:: QueryDict
 
 
 In an :class:`HttpRequest` object, the :attr:`~HttpRequest.GET` and
 In an :class:`HttpRequest` object, the :attr:`~HttpRequest.GET` and
-`attr:`~HttpRequest.POST` attributes are instances of ``django.http.QueryDict``,
+:attr:`~HttpRequest.POST` attributes are instances of ``django.http.QueryDict``,
 a dictionary-like class customized to deal with multiple values for the same
 a dictionary-like class customized to deal with multiple values for the same
 key. This is necessary because some HTML form elements, notably
 key. This is necessary because some HTML form elements, notably
 ``<select multiple>``, pass multiple values for the same key.
 ``<select multiple>``, pass multiple values for the same key.