diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2006-06-14 03:31:34 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2006-06-14 03:31:34 +0000 |
| commit | 97fedcc03175f6ced6c46145be930aad4977c54f (patch) | |
| tree | 5a305b47f9b0a2af06fac70e73b627cb96a3ad90 /docs/db-api.txt | |
| parent | 93974e00d35a4bb14a4322009dfcdf6a987cca83 (diff) | |
Fixed #2143 -- Changed a few places where the pre-magic-removal-merge syntax
was still being used in the docs. Thanks to mssnlayam@yahoo.com for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3125 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/db-api.txt')
| -rw-r--r-- | docs/db-api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/db-api.txt b/docs/db-api.txt index 1109df72c9..7427f36374 100644 --- a/docs/db-api.txt +++ b/docs/db-api.txt @@ -559,7 +559,7 @@ following models:: # ... hometown = models.ForeignKey(City) - class Book(meta.Model): + class Book(models.Model): # ... author = models.ForeignKey(Person) |
