From ab0899fc6b83b8e35dec824c5300ae240fd1024e Mon Sep 17 00:00:00 2001 From: wrwrwr Date: Sun, 19 Oct 2014 11:01:14 +0200 Subject: [PATCH] [1.6.x] Fixed a typo in urlencode documentation. Backport of 62a53bdf11 from master --- docs/ref/utils.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/utils.txt b/docs/ref/utils.txt index 8c0b92b7ba..22c6c9ee99 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -689,7 +689,7 @@ escaping HTML. .. function:: urlencode(query, doseq=0) A version of Python's urllib.urlencode() function that can operate on - unicode strings. The parameters are first case to UTF-8 encoded strings + unicode strings. The parameters are first cast to UTF-8 encoded strings and then encoded as per normal. .. function:: cookie_date(epoch_seconds=None)