From 34560e0776e9ca090298df3fea2344743d5664cb Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 19 Nov 2005 20:20:13 +0000 Subject: [PATCH] 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 --- docs/model-api.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.