From 789f9c9b29dc79c3007b2b31cb75cf8d037f266d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 1 Sep 2016 09:51:05 -0400 Subject: [PATCH] Refs #27164 -- Fixed typo in docs/topics/db/multi-db.txt --- docs/topics/db/multi-db.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/db/multi-db.txt b/docs/topics/db/multi-db.txt index a60b637ba3..be976246e6 100644 --- a/docs/topics/db/multi-db.txt +++ b/docs/topics/db/multi-db.txt @@ -701,7 +701,7 @@ how you can split these models across databases: - ``auth`` models — ``User``, ``Group`` and ``Permission`` — are linked together and linked to ``ContentType``, so they must be stored in the same database as ``ContentType``. -- ``admin`` depends on ``auth``, so their models must be in the same database +- ``admin`` depends on ``auth``, so its models must be in the same database as ``auth``. - ``flatpages`` and ``redirects`` depend on ``sites``, so their models must be in the same database as ``sites``.