summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-27 13:20:48 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2007-05-27 13:20:48 +0000
commit67abbb6ea00fc6c8cdc0a0e1c5b25a874ceaa769 (patch)
treea3d97b8da09a407e432c435ea074eef2e45b4e59
parent47c94244e4067eba2197ea68b101e55e77b3436f (diff)
Fixed #4366 -- Fixed a small typo. Thanks, Ivan Sagalaev.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5367 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/testing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/testing.txt b/docs/testing.txt
index 92edf46e09..4e5d1ec079 100644
--- a/docs/testing.txt
+++ b/docs/testing.txt
@@ -4,7 +4,7 @@ Testing Django applications
Automated testing is an extremely useful bug-killing tool for the modern
Web developer. You can use a collection of tests -- a **test suite** -- to
-to solve, or avoid, a number of problems:
+solve, or avoid, a number of problems:
* When you're writing new code, you can use tests to validate your code
works as expected.