From b448b678e88f532de1a607871881b2339c7d1ee5 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 13 Mar 2008 20:23:06 +0000 Subject: [PATCH] Fixed a typo in docs/model-api.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@7237 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/model-api.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/model-api.txt b/docs/model-api.txt index 66fa63e3c6..a98af54ec3 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -788,10 +788,10 @@ Note, however, that this only refers to models in the same models.py file -- you cannot use a string to reference a model defined in another application or imported from elsewhere. -**New in Django development version:** to refer to models defined in another -application, you must instead explicitially specify the application label. That -is, if the ``Manufacturer`` model above is defined in another application called -``production``, you'd need to use:: +**New in Django development version:** To refer to models defined in another +application, you must instead explicitly specify the application label. For +example, if the ``Manufacturer`` model above is defined in another application +called ``production``, you'd need to use:: class Car(models.Model): manufacturer = models.ForeignKey('production.Manufacturer')