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:43:52 -0400
commit1cfb1052eec6c670b6fee7a1490b25409f2bb7da (patch)
treed0165f458a9376b0b04cf89e8b8b0ace63831d5f /docs
parentfaff723770adddf3d093291e51cada3a6ef16223 (diff)
[1.6.x] Fixed typo in docs/topics/testing/tools.txt.
Backport of 7ce4ef58c9 from master
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 db11475a6f..583b1834b8 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -624,7 +624,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).