Tiny change to docstring in many_to_one_null model unit test

git-svn-id: http://code.djangoproject.com/svn/django/trunk@558 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-08-26 05:39:23 +00:00
parent 286698e8e5
commit 75b5372a8f
1 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,8 @@
"""
16. Many-to-one relationships that can be null
To define a many-to-one relationship, use ``ForeignKey()`` with ``null=True`` .
To define a many-to-one relationship that can have a null foreign key, use
``ForeignKey()`` with ``null=True`` .
"""
from django.core import meta