summaryrefslogtreecommitdiff
path: root/docs/topics/testing/index.txt
diff options
context:
space:
mode:
authorDavid Smith <smithdc@gmail.com>2021-07-23 07:48:16 +0100
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2021-07-29 06:24:12 +0200
commit1024b5e74a7166313ad4e4975a15e90dccd3ec5f (patch)
tree05d75177f183de5e3c58dbf25a3f71ff4a5c820a /docs/topics/testing/index.txt
parentacde91745656a852a15db7611c08cabf93bb735b (diff)
Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropriate.
Diffstat (limited to 'docs/topics/testing/index.txt')
-rw-r--r--docs/topics/testing/index.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/testing/index.txt b/docs/topics/testing/index.txt
index 1c7d6394a5..1192b8264e 100644
--- a/docs/topics/testing/index.txt
+++ b/docs/topics/testing/index.txt
@@ -3,7 +3,7 @@ Testing in Django
=================
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
+web developer. You can use a collection of tests -- a **test suite** -- to
solve, or avoid, a number of problems:
* When you're writing new code, you can use tests to validate your code
@@ -13,7 +13,7 @@ solve, or avoid, a number of problems:
ensure your changes haven't affected your application's behavior
unexpectedly.
-Testing a Web application is a complex task, because a Web application is made
+Testing a web application is a complex task, because a web application is made
of several layers of logic -- from HTTP-level request handling, to form
validation and processing, to template rendering. With Django's test-execution
framework and assorted utilities, you can simulate requests, insert test data,