summaryrefslogtreecommitdiff
path: root/docs/ref/request-response.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-07-27 08:35:21 -0400
committerTim Graham <timograham@gmail.com>2015-07-27 10:32:47 -0400
commit87d55081ea398c65b2503d22ed3907a9175ec729 (patch)
tree56fd18ad847033f670db7847a4f549c750ef2b24 /docs/ref/request-response.txt
parent29465d438e00660221e1e0ac5e2929a719c56113 (diff)
Fixed #25159 -- Removed brackets from class/function/method signatures in docs.
Thanks hellbeast for the initial patch.
Diffstat (limited to 'docs/ref/request-response.txt')
-rw-r--r--docs/ref/request-response.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt
index ff80639940..3f84d0d144 100644
--- a/docs/ref/request-response.txt
+++ b/docs/ref/request-response.txt
@@ -539,7 +539,7 @@ In addition, ``QueryDict`` has the following methods:
>>> q.dict()
{'a': '5'}
-.. method:: QueryDict.urlencode([safe])
+.. method:: QueryDict.urlencode(safe=None)
Returns a string of the data in query-string format. Example::