From 62a53bdf11c01e16b4e2500c7cf05fe372ccc261 Mon Sep 17 00:00:00 2001 From: wrwrwr Date: Sun, 19 Oct 2014 11:01:14 +0200 Subject: [PATCH] Fixed a typo in urlencode documentation. --- 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 1cbc23449b4..6a33f8bb938 100644 --- a/docs/ref/utils.txt +++ b/docs/ref/utils.txt @@ -698,7 +698,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)