Opened 14 years ago
Closed 14 years ago
#13785 closed (fixed)
Documentation typos
Reported by: | Lucian Ursu | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | 1.2 |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
At the page http://docs.djangoproject.com/en/1.2/ref/request-response/#ref-request-response there are the following errors:
Under QueryDict.setdefault(key, default)
, it should be __setitem__()
not __setitem__
.
Under QueryDict.items()
, it should be __getitem__()
not __getitem()__
.
Under QueryDict.iteritems()
, it should be __getitem__()
not __getitem()__()
.
Under QueryDict.values()
, it should be __getitem__()
not __getitem()__
.
Note:
See TracTickets
for help on using tickets.
(In [13356]) Fixed #13785: Corrected some misplaced and missing parentheses. Thanks LucianU.