summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGabriel Hurley <gabehr@gmail.com>2010-10-11 19:19:01 +0000
committerGabriel Hurley <gabehr@gmail.com>2010-10-11 19:19:01 +0000
commitf85f79eb4aeb9cb1af5e66f457756768c50ee90f (patch)
treead5e241808fbfcf3c37b5dece2f0d274dce19067 /docs
parent39595a9e0ea85edfea9bca7db2cf4416beb3374d (diff)
Fixed a few typos in the unittest2 docs introduced in [14139].
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14149 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/topics/testing.txt b/docs/topics/testing.txt
index 904e7070db..81cc4809d5 100644
--- a/docs/topics/testing.txt
+++ b/docs/topics/testing.txt
@@ -167,15 +167,15 @@ taking a class-based approach.
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