Opened 17 years ago
Closed 17 years ago
#6600 closed (fixed)
contenttypes documentation typos
Reported by: | anonymous | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | contenttypes doc typo | |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Typo 1
The following code snippet from http://www.djangoproject.com/documentation/contenttypes/#generic-relations will raise an ImportError:
>>> from django.contrib.models.auth import User Traceback (most recent call last): File "<console>", line 1, in <module> ImportError: No module named models.auth
Apparently, this is what is actually meant:
>>> from django.contrib.auth.models import User >>>
Typo 2
Also, near the end of the page,
>>> b = Bookmark('http://www.djangoproject.com/') >>> b.save() .. IntegrityError: datatype mismatch >>>
appears to be missing a kwarg:
>>> b = Bookmark(url='http://www.djangoproject.com/') >>> b.save() >>>
}}}
Attachments (1)
Change History (4)
by , 17 years ago
Attachment: | docs.contenttypes-typos.patch added |
---|
comment:1 by , 17 years ago
comment:2 by , 17 years ago
Triage Stage: | Unreviewed → Ready for checkin |
---|
comment:3 by , 17 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
You may safely delete #6601, submitted in error (identical to #6600). Thanks.