summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-03-25 18:09:43 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-03-25 18:09:43 +0000
commitbd8c2fead83ee5e88cb2aa5f851ca493d455fa24 (patch)
treec5769a56234c77d7e7d5e891e96494eac7a2607e
parent6481cf43f98d3fdc45a3c5a1f2f366b88417d4cb (diff)
Fixed typo in docs/django-admin.txt. Refs #3786
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4818 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/django-admin.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 28e28089cc..b6028dc2a0 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -342,7 +342,7 @@ Prints the custom SQL statements for the given appnames.
For each model in each specified app, this command looks for the file
``<appname>/sql/<modelname>.sql``, where ``<appname>`` is the given appname and
``<modelname>`` is the model's name in lowercase. For example, if you have an
-app ``news`` that includes a ``Story`` model, ``sqlinitialdata`` will attempt
+app ``news`` that includes a ``Story`` model, ``sqlcustom`` will attempt
to read a file ``news/sql/story.sql`` and append it to the output of this
command.