From e02d82155ad071639b985904289392003c5f03f1 Mon Sep 17 00:00:00 2001
From: Tim Graham <timograham@gmail.com>
Date: Fri, 1 Aug 2014 09:10:14 -0400
Subject: [PATCH] [1.7.x] Fixed typo in docs/topics/testing/tools.txt.

Backport of 7ce4ef58c9 from master
---
 docs/topics/testing/tools.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/topics/testing/tools.txt b/docs/topics/testing/tools.txt
index b7e0fff1276..680e6aca6cf 100644
--- a/docs/topics/testing/tools.txt
+++ b/docs/topics/testing/tools.txt
@@ -623,7 +623,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).