Author: gabrielhurley
Date: 2011-09-09 16:25:48 -0700 (Fri, 09 Sep 2011)
New Revision: 16754

Modified:
   django/trunk/docs/intro/tutorial01.txt
Log:
Fixed #16782 -- Corrected a broken cross-reference to the database engine 
setting in the tutorial. Thanks to mjumbewu for the report and patch.


Modified: django/trunk/docs/intro/tutorial01.txt
===================================================================
--- django/trunk/docs/intro/tutorial01.txt      2011-09-09 23:02:33 UTC (rev 
16753)
+++ django/trunk/docs/intro/tutorial01.txt      2011-09-09 23:25:48 UTC (rev 
16754)
@@ -41,7 +41,7 @@
 .. code-block:: bash
 
    django-admin.py startproject mysite
-   
+
 This will create a ``mysite`` directory in your current directory.
 
 .. admonition:: Script name may differ in distribution packages
@@ -173,11 +173,11 @@
 following keys in the :setting:`DATABASES` ``'default'`` item to match
 your databases connection settings.
 
-    * :setting:`ENGINE` -- Either
+    * :setting:`ENGINE <DATABASE-ENGINE>` -- Either
       ``'django.db.backends.postgresql_psycopg2'``,
       ``'django.db.backends.mysql'`` or
       ``'django.db.backends.sqlite3'``. Other backends are
-      :setting:`also available <ENGINE>`.
+      :setting:`also available <DATABASE-ENGINE>`.
 
     * :setting:`NAME` -- The name of your database. If you're using
       SQLite, the database will be a file on your computer; in that
@@ -692,7 +692,7 @@
 
 For more information on model relations, see :doc:`Accessing related objects
 </ref/models/relations>`. For more on how to use double underscores to perform
-field lookups via the API, see `Field lookups`__. For full details on the 
+field lookups via the API, see `Field lookups`__. For full details on the
 database API, see our :doc:`Database API reference </topics/db/queries>`.
 
 __ http://docs.djangoproject.com/en/1.2/topics/db/queries/#field-lookups

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.

Reply via email to