summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Rosner <brosner@gmail.com>2008-07-23 22:30:25 +0000
committerBrian Rosner <brosner@gmail.com>2008-07-23 22:30:25 +0000
commit4e723f95715c771bc75b92ef50544e95ee01dfca (patch)
tree5635ed40d6cb8adb30690e0b0a8fcbc2e8c856e6
parent7b3cf13d3249d4e4bcf152e27631ea7ec4a55412 (diff)
Fixed #7897 -- Corrected some spelling and grammatical errors in the InlineModelAdmin objects documentation. Thanks arthurk and Karen Tracey for catching these.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8065 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/admin.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/admin.txt b/docs/admin.txt
index 46d3f10efc..be2a0ff09b 100644
--- a/docs/admin.txt
+++ b/docs/admin.txt
@@ -500,8 +500,8 @@ apply as `regular media definitions on forms`_.
============================
The admin interface has the ability to edit models on the same page as a
-parent model. These are called inlines. You can add them a model being
-specifing them in a ``ModelAdmin.inlines`` attribute::
+parent model. These are called inlines. You can add them to a model by
+specifying them in a ``ModelAdmin.inlines`` attribute::
class BookInline(admin.TabularInline):
model = Book