summaryrefslogtreecommitdiff
path: root/docs/topics/signing.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/signing.txt
parentacde91745656a852a15db7611c08cabf93bb735b (diff)
Fixed 32956 -- Lowercased spelling of "web" and "web framework" where appropriate.
Diffstat (limited to 'docs/topics/signing.txt')
-rw-r--r--docs/topics/signing.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/topics/signing.txt b/docs/topics/signing.txt
index 6e4a61d2c4..c862995633 100644
--- a/docs/topics/signing.txt
+++ b/docs/topics/signing.txt
@@ -5,14 +5,14 @@ Cryptographic signing
.. module:: django.core.signing
:synopsis: Django's signing framework.
-The golden rule of Web application security is to never trust data from
+The golden rule of web application security is to never trust data from
untrusted sources. Sometimes it can be useful to pass data through an
untrusted medium. Cryptographically signed values can be passed through an
untrusted channel safe in the knowledge that any tampering will be detected.
Django provides both a low-level API for signing values and a high-level API
for setting and reading signed cookies, one of the most common uses of
-signing in Web applications.
+signing in web applications.
You may also find signing useful for the following: