Author: adrian Date: 2008-09-09 22:57:52 -0500 (Tue, 09 Sep 2008) New Revision: 8996
Modified: django/trunk/docs/ref/models/querysets.txt Log: Fixed #9003 -- Fixed awkward wording in querysets.txt Modified: django/trunk/docs/ref/models/querysets.txt =================================================================== --- django/trunk/docs/ref/models/querysets.txt 2008-09-09 19:53:57 UTC (rev 8995) +++ django/trunk/docs/ref/models/querysets.txt 2008-09-10 03:57:52 UTC (rev 8996) @@ -865,13 +865,12 @@ .. admonition:: MySQL comparisons - In MySQL, whether or not ``exact`` comparisons are case-insensitive by - default. This is controlled by the collation setting on the database - tables (this is a database setting, *not* a Django setting). It is - possible to configured you MySQL tables to use case-sensitive comparisons, - however there are some trade-offs involved. For more information about - this, see the :ref:`collation section <mysql-collation>` in the - :ref:`databases <ref-databases>` documentation. + In MySQL, a database table's "collation" setting determines whether + ``exact`` comparisons are case-sensitive. This is a database setting, *not* + a Django setting. It's possible to configure your MySQL tables to use + case-sensitive comparisons, but some trade-offs are involved. For more + information about this, see the :ref:`collation section <mysql-collation>` + in the :ref:`databases <ref-databases>` documentation. iexact ~~~~~~ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
