Opened 16 years ago

Closed 16 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)

docs.contenttypes-typos.patch (905 bytes ) - added by anonymous 16 years ago.

Download all attachments as: .zip

Change History (4)

by anonymous, 16 years ago

comment:1 by anonymous, 16 years ago

You may safely delete #6601, submitted in error (identical to #6600). Thanks.

comment:2 by Chris Beaven, 16 years ago

Triage Stage: UnreviewedReady for checkin

comment:3 by Russell Keith-Magee, 16 years ago

Resolution: fixed
Status: newclosed

(In [7111]) Fixed #6600 -- Corrected typos in contenttype documentation.

Note: See TracTickets for help on using tickets.
Back to Top