diff options
| author | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-06-30 06:42:50 +0000 |
|---|---|---|
| committer | Malcolm Tredinnick <malcolm.tredinnick@gmail.com> | 2008-06-30 06:42:50 +0000 |
| commit | 6d5c868e86297a7591fe6e42e48805abc8607474 (patch) | |
| tree | 6c5cb8be01cb2f8976b5a57fe323a44aab15b0c6 | |
| parent | 5da47e43c7cb051991a3248311248cf6ba7ff27d (diff) | |
Fixed #7543 -- Typo fix. Thanks, James Turnbull.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7792 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | docs/model-api.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/model-api.txt b/docs/model-api.txt index 1bed4ee818..4e7b5c3096 100644 --- a/docs/model-api.txt +++ b/docs/model-api.txt @@ -2155,7 +2155,7 @@ still only creating one database table per child model at the database level. When an abstract base class is created, Django makes any ``Meta`` inner class you declared on the base class available as an attribute. If a child class -does not declared its own ``Meta`` class, it will inherit the parent's +does not declare its own ``Meta`` class, it will inherit the parent's ``Meta``. If the child wants to extend the parent's ``Meta`` class, it can subclass it. For example:: |
