From 75b5372a8fe4662946ed88b6abfc65b572314c75 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 26 Aug 2005 05:39:23 +0000 Subject: [PATCH] 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 --- tests/testapp/models/many_to_one_null.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/testapp/models/many_to_one_null.py b/tests/testapp/models/many_to_one_null.py index dcf6373e68..c3c92601f7 100644 --- a/tests/testapp/models/many_to_one_null.py +++ b/tests/testapp/models/many_to_one_null.py @@ -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