summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-11-19 20:20:13 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-11-19 20:20:13 +0000
commit34560e0776e9ca090298df3fea2344743d5664cb (patch)
tree3f866fcd7502d96f6657ffd17b3876bf07a637df
parentc5068ff4acb44cd2d30794618b972e7c045290be (diff)
Fixed typo in docs/model-api.txt. Thanks, anl
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1293 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/model-api.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt
index 1864de7e6a..e58df9df01 100644
--- a/docs/model-api.txt
+++ b/docs/model-api.txt
@@ -580,7 +580,7 @@ relationship should work. All are optional:
Many-to-many relationships
~~~~~~~~~~~~~~~~~~~~~~~~~~
-To define a many-to-one relationship, use ``ManyToManyField``. You use it just
+To define a many-to-many relationship, use ``ManyToManyField``. You use it just
like any other ``Field`` type: by including it as a class attribute of your
model.