Small formatting improvement to one_to_one model test

git-svn-id: http://code.djangoproject.com/svn/django/trunk@358 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2005-08-01 15:31:50 +00:00
parent af95567c14
commit 3aa33edeef
1 changed files with 2 additions and 2 deletions

View File

@ -1,9 +1,9 @@
"""
10. One-to-one relationships
To define a many-to-one relationship, use OneToOneField().
To define a many-to-one relationship, use ``OneToOneField()``.
In this example, a Place optionally can be a Restaurant.
In this example, a ``Place`` optionally can be a ``Restaurant``.
"""
from django.core import meta