summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-08-04 02:35:26 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-08-04 02:35:26 +0000
commit7dc07ed937efff91c0be098c0ae6b91cd363c1dd (patch)
tree483a8e36b3e053d93a3696bde0675f900cbc1fac /tests
parentf4e4ae96cb69d616af6f7009512cdcd2cb7c1e39 (diff)
Fixed typo in one_to_one test docstring. Thanks, Frank
git-svn-id: http://code.djangoproject.com/svn/django/trunk@396 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'tests')
-rw-r--r--tests/testapp/models/one_to_one.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/testapp/models/one_to_one.py b/tests/testapp/models/one_to_one.py
index 4cbaf8074a..595e40cab1 100644
--- a/tests/testapp/models/one_to_one.py
+++ b/tests/testapp/models/one_to_one.py
@@ -1,7 +1,7 @@
"""
10. One-to-one relationships
-To define a many-to-one relationship, use ``OneToOneField()``.
+To define a one-to-one relationship, use ``OneToOneField()``.
In this example, a ``Place`` optionally can be a ``Restaurant``.
"""