summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-06-27 09:00:12 +0000
committerJannis Leidel <jannis@leidel.info>2011-06-27 09:00:12 +0000
commitd400ff4f139c05d205066ae07a30ac9156cb8468 (patch)
treee818f56d2a2e15b06b0bd7d8d57ba7e2f2710dc4
parent0e27c4921048250c668dcb06e010a137de6f66e0 (diff)
Fixed #16354 -- Fixed typo in signing docstring. Thanks, charettes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16471 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/signing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/signing.py b/django/core/signing.py
index 06b6c78f1c..7f92d61098 100644
--- a/django/core/signing.py
+++ b/django/core/signing.py
@@ -6,7 +6,7 @@ The format used looks like this:
>>> signing.dumps("hello")
'ImhlbGxvIg:1QaUZC:YIye-ze3TTx7gtSv422nZA4sgmk'
-There are two components here, separatad by a ':'. The first component is a
+There are two components here, separated by a ':'. The first component is a
URLsafe base64 encoded JSON of the object passed to dumps(). The second
component is a base64 encoded hmac/SHA1 hash of "$first_component:$secret"