diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-08-26 05:39:23 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-08-26 05:39:23 +0000 |
| commit | 75b5372a8fe4662946ed88b6abfc65b572314c75 (patch) | |
| tree | fbfdcdf2d77b817efb79e828ea39b41d1c6ca4e0 /tests/testapp/models | |
| parent | 286698e8e5e08f3d74ee188ab2640564971069ce (diff) | |
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
Diffstat (limited to 'tests/testapp/models')
| -rw-r--r-- | tests/testapp/models/many_to_one_null.py | 3 |
1 files changed, 2 insertions, 1 deletions
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 |
