Ver Fonte

Fixed #10592 -- Corrected typo in initial-data howto. Thanks to Paul Menzel.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@10145 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Russell Keith-Magee há 16 anos atrás
pai
commit
af997a1625
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      docs/howto/initial-data.txt

+ 2 - 2
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
 -------------------------------------------