summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-08-01 09:10:14 -0400
committerTim Graham <timograham@gmail.com>2014-08-01 09:30:58 -0400
commit7ce4ef58c95fc17d4914e1962608aad79d7c46f1 (patch)
treee20a95fc9dc27f2f6acc9348f8c2bf68ee294823 /docs
parent8b7347220f3d86b46f5f87270c6cdcb9960895fd (diff)
Fixed typo in docs/topics/testing/tools.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/testing/tools.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index 9f671044a8..2d412d15b1 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -637,7 +637,7 @@ to test the effects of commit and rollback:
used in ``TestCase``, no actual commit or rollback will be performed by the
database. This can cause your tests to pass or fail unexpectedly. Always
use ``TransactionTestCase`` when testing transactional behavior or any code
- that can't normally be excuted in autocommit mode
+ that can't normally be executed in autocommit mode
(:meth:`~django.db.models.query.QuerySet.select_for_update()` is an
example).