From 4c4e46e64656e6038793e024bc97d0d1afc63d8a Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Mon, 23 May 2011 13:23:00 +0000 Subject: 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 --- django/core/signing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django') 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=(',', ':')) -- cgit v1.3