﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
6600	contenttypes documentation typos	anonymous	nobody	"= Typo 1 =
The following code snippet from http://www.djangoproject.com/documentation/contenttypes/#generic-relations will raise an '''!ImportError''':

{{{
#!py
>>> 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:
{{{
#!py
>>> from django.contrib.auth.models import User
>>>
}}}

= Typo 2 =

Also, near the end of the page,

{{{
#!py
>>> b = Bookmark('http://www.djangoproject.com/')
>>> b.save()
..
IntegrityError: datatype mismatch
>>>
}}}

appears to be missing a kwarg:

{{{
#!py
>>> b = Bookmark(url='http://www.djangoproject.com/')
>>> b.save()
>>> 
}}}

}}}"		closed	Documentation	dev		fixed	contenttypes doc typo		Ready for checkin	1	0	0	0	0	0
