summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2009-07-03 07:20:36 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2009-07-03 07:20:36 +0000
commitc05f4d5a220d6dc83c5b68f3beb5fb3b49d30d29 (patch)
tree9031e9bfc52a41edf5da61a666dda4903abde87a /docs/ref
parentdf2011c61b85e52bb8e4c092e7e30a8b11caa770 (diff)
[1.0.X] Fixed #11417 -- Corrected typo in MySQL collation notes. Thanks to vorushin for the report.
Merge of r11169 from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@11171 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/databases.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index b04ffdf22b..5741991cd9 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -167,7 +167,7 @@ bytestrings (which shouldn't be too difficult) is the recommended solution.
Should you decide to use ``utf8_bin`` collation for some of your tables with
MySQLdb 1.2.1p2, you should still use ``utf8_collation_ci_swedish`` (the
default) collation for the :class:`django.contrib.sessions.models.Session`
-table (usually called ``django_session`` and the table
+table (usually called ``django_session``) and the
:class:`django.contrib.admin.models.LogEntry` table (usually called
``django_admin_log``). Those are the two standard tables that use
:class:`~django.db.model.TextField` internally.