From 1f28b948a7417fee550019b857fd872a7a5fb95f Mon Sep 17 00:00:00 2001 From: Matthias K Date: Sat, 7 May 2016 15:40:53 +0200 Subject: [PATCH] [1.9.x] Fixed a typo in docs/topics/http/urls.txt Backport of 8b2fce0f70f41518a4d20ee1c27f42fd7ad64bf4 from master --- docs/topics/http/urls.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/http/urls.txt b/docs/topics/http/urls.txt index cf406a64e6..0cfcf14049 100644 --- a/docs/topics/http/urls.txt +++ b/docs/topics/http/urls.txt @@ -627,7 +627,7 @@ way to tell these named URLs apart. Django applications that make proper use of URL namespacing can be deployed more than once for a particular site. For example :mod:`django.contrib.admin` has an :class:`~django.contrib.admin.AdminSite` class which allows you to easily -:ref:`deploy more than once instance of the admin `. +:ref:`deploy more than one instance of the admin `. In a later example, we'll discuss the idea of deploying the polls application from the tutorial in two different locations so we can serve the same functionality to two different audiences (authors and publishers).