summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-03-24 11:53:30 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-03-24 11:53:30 +0000
commit177e997400aec2a0d1e9381af200f5e16fdb13d1 (patch)
tree5ef919b2ae8a941cc178d1d0ac18cbabbb76fc39 /docs
parentd9eb87adae519425646fa7245cd35f24496c1882 (diff)
[1.0.X] Fixed #10592 -- Corrected typo in initial-data howto. Thanks to Paul Menzel.
Merge of r10145 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@10154 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/initial-data.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/howto/initial-data.txt b/docs/howto/initial-data.txt
index c38c9d4014..b005c01b06 100644
--- a/docs/howto/initial-data.txt
+++ b/docs/howto/initial-data.txt
@@ -71,8 +71,8 @@ Loading data is easy: just call :djadmin:`manage.py loaddata fixturename
<loaddata>`, where *fixturename* is the name of the fixture file you've created.
Every time you run :djadmin:`loaddata` the data will be read from the fixture
and re-loaded into the database. Note that this means that if you change one of
-the rows created by a fixture and the run :djadmin:`loaddata` again you'll wipe
-out any changes you've made.
+the rows created by a fixture and then run :djadmin:`loaddata` again you'll
+wipe out any changes you've made.
Automatically loading initial data fixtures
-------------------------------------------