summaryrefslogtreecommitdiff
path: root/docs/releases
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2016-11-23 15:03:33 -0500
committerTim Graham <timograham@gmail.com>2016-11-23 15:14:28 -0500
commit93a081946d92da010c7de62dc58e697c6c33e5d3 (patch)
treeaea40aa97618634d9f2f5a405b1bd29de4510590 /docs/releases
parentd02a03d574b6623ce0d648dd676ae278d46375fb (diff)
Normalized casing of "custom user model".
Diffstat (limited to 'docs/releases')
-rw-r--r--docs/releases/1.5.txt6
-rw-r--r--docs/releases/1.6.txt2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/releases/1.5.txt b/docs/releases/1.5.txt
index 9d63f3d573..cbd1d48cfe 100644
--- a/docs/releases/1.5.txt
+++ b/docs/releases/1.5.txt
@@ -133,7 +133,7 @@ you may need to make some changes to the way you reference User instances. You
should also document any specific features of the User model that your
application relies upon.
-See the :ref:`documentation on custom User models <auth-custom-user>` for
+See the :ref:`documentation on custom user models <auth-custom-user>` for
more details.
Support for saving a subset of model's fields
@@ -560,7 +560,7 @@ Prior to Django 1.5, if you attempted to log into the admin interface and
mistakenly used your email address instead of your username, the admin
interface would provide a warning advising that your email address was
not your username. In Django 1.5, the introduction of
-:ref:`custom User models <auth-custom-user>` has required the removal of this
+:ref:`custom user models <auth-custom-user>` has required the removal of this
warning. This doesn't change the login behavior of the admin site; it only
affects the warning message that is displayed under one particular mode of
login failure.
@@ -741,7 +741,7 @@ framework.
``AUTH_PROFILE_MODULE``
-----------------------
-With the introduction of :ref:`custom User models <auth-custom-user>`, there is
+With the introduction of :ref:`custom user models <auth-custom-user>`, there is
no longer any need for a built-in mechanism to store user profile data.
You can still define user profiles models that have a one-to-one relation with
diff --git a/docs/releases/1.6.txt b/docs/releases/1.6.txt
index f97704688d..275f5bd2e4 100644
--- a/docs/releases/1.6.txt
+++ b/docs/releases/1.6.txt
@@ -448,7 +448,7 @@ removed and the standalone GeoDjango tests execution setup it implemented isn't
supported anymore. To run the GeoDjango tests simply use the new
``DiscoverRunner`` and specify the ``django.contrib.gis`` app.
-Custom User models in tests
+Custom user models in tests
---------------------------
The introduction of the new test runner has also slightly changed the way that