From 3aa33edeef66ae468eb10dd6b3d35e7053156c45 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 1 Aug 2005 15:31:50 +0000 Subject: [PATCH] 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 --- tests/testapp/models/one_to_one.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/testapp/models/one_to_one.py b/tests/testapp/models/one_to_one.py index 741dee9642..4cbaf8074a 100644 --- a/tests/testapp/models/one_to_one.py +++ b/tests/testapp/models/one_to_one.py @@ -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