From dd22150b5f87e38a5f343e36a5864ad25c84d8f1 Mon Sep 17 00:00:00 2001 From: Gabriel Hurley Date: Mon, 11 Oct 2010 20:34:16 +0000 Subject: [PATCH] Fixed the same set of typos as were corrected in [14149], this time in the release notes. Thanks to Paul McMillan for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14151 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/releases/1.3.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/releases/1.3.txt b/docs/releases/1.3.txt index 6f196e1985..04a045c135 100644 --- a/docs/releases/1.3.txt +++ b/docs/releases/1.3.txt @@ -148,15 +148,15 @@ backported for Python 2.4 compatibility. To access this library, Django provides the ``django.utils.unittest`` module alias. If you are using Python -2.7, or you have installed unittest2 locally, Django will mapt the -alias to the installed version of the unittest library Otherwise, +2.7, or you have installed unittest2 locally, Django will map the +alias to the installed version of the unittest library. Otherwise, Django will use it's own bundled version of unittest2. To use this alias, simply use:: from django.utils import unittest -wherever you would historically used:: +wherever you would have historically used:: import unittest