summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2011-05-23 13:23:00 +0000
committerJannis Leidel <jannis@leidel.info>2011-05-23 13:23:00 +0000
commit4c4e46e64656e6038793e024bc97d0d1afc63d8a (patch)
treea3007b5eb93d83918634931912f4f636018378ed /django
parent17a6bb0f700dcdf422d88dcb110b76098e948674 (diff)
Fixed #16078 -- Fixed a few typos in the signing documentation. Thanks, brutasse.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16270 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django')
-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 3b0a48be33..054777a260 100644
--- a/django/core/signing.py
+++ b/django/core/signing.py
@@ -96,7 +96,7 @@ def dumps(obj, key=None, salt='django.core.signing', compress=False):
save some space. Prepends a '.' to signify compression. This is included
in the signature, to protect against zip bombs.
- salt can be used to further salt the hash, in case you're worried
+ Salt can be used to further salt the hash, in case you're worried
that the NSA might try to brute-force your SHA-1 protected secret.
"""
json = simplejson.dumps(obj, separators=(',', ':'))