summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-09-27 03:38:15 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-09-27 03:38:15 +0000
commit7f4067100cd6767f37b8f50c553dacbd738b8771 (patch)
tree022e67a86294d9ff39e8e3d66c6ae02293345078 /docs
parentd86624877de7b7db91c2966dd9bfa6ef8721b29e (diff)
Fixed #150 -- Clarified DATABASE_NAME description in docs/tutorial01.txt for SQLite. Thanks, lstep@adelux.fr
git-svn-id: http://code.djangoproject.com/svn/django/trunk@703 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/tutorial01.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index 7fbdafd36f..629a2ab017 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -55,8 +55,8 @@ these settings to match your database's connection parameters:
* ``DATABASE_ENGINE`` -- Either 'postgresql', 'mysql' or 'sqlite3'.
More coming soon.
- * ``DATABASE_NAME`` -- The name of your database, or the full path to
- the database file if using sqlite.
+ * ``DATABASE_NAME`` -- The name of your database, or the full (absolute)
+ path to the database file if you're using sqlite.
* ``DATABASE_USER`` -- Your database username (not used for sqlite).
* ``DATABASE_PASSWORD`` -- Your database password (not used for sqlite).
* ``DATABASE_HOST`` -- The host your database is on. Leave this as an