Browse Source

Fixed #18099 -- corrected a typo in the initial data docs. Thanks to Bradley Ayers for the patch.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@17895 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Alex Gaynor 13 years ago
parent
commit
f5a9e5e928
1 changed files with 1 additions and 1 deletions
  1. 1 1
      docs/howto/initial-data.txt

+ 1 - 1
docs/howto/initial-data.txt

@@ -162,4 +162,4 @@ Backend-specific SQL data is executed before non-backend-specific SQL
 data. For example, if your app contains the files ``sql/person.sql``
 and ``sql/person.sqlite3.sql`` and you're installing the app on
 SQLite, Django will execute the contents of
-``sql/person.sqlite.sql`` first, then ``sql/person.sql``.
+``sql/person.sqlite3.sql`` first, then ``sql/person.sql``.