From 3594f322edd56eee0e68f282d8c950f1b9478765 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Sun, 7 Dec 2008 03:48:39 +0000 Subject: [PATCH] [1.0.X] Fixed #9731 -- Typo fix in docs. Backport of r9578 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9581 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/howto/initial-data.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt index 917e11bb64..c38c9d4014 100644 --- a/docs/howto/initial-data.txt +++ b/docs/howto/initial-data.txt @@ -65,7 +65,7 @@ And here's that same fixture as YAML: first_name: Paul last_name: McCartney -You'll store this data in a ``fixtures`` directory inside you app. +You'll store this data in a ``fixtures`` directory inside your app. Loading data is easy: just call :djadmin:`manage.py loaddata fixturename `, where *fixturename* is the name of the fixture file you've created.