From 4945527f7e1b6299fdb918ee446c7fb0c216793c Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 6 Mar 2021 20:13:17 +0100 Subject: [PATCH] Fix the link to MultiDict in client_quickstart.rst --- docs/client_quickstart.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/client_quickstart.rst b/docs/client_quickstart.rst index e030ce92d3..e82b44ac34 100644 --- a/docs/client_quickstart.rst +++ b/docs/client_quickstart.rst @@ -99,9 +99,9 @@ following code:: You can see that the URL has been correctly encoded by printing the URL. -For sending data with multiple values for the same key :class:`MultiDict` may be -used; the library support nested lists (``{'key': ['value1', 'value2']}``) -alternative as well. +For sending data with multiple values for the same key +:class:`~multidict.MultiDict` may be used; the library support nested lists +(``{'key': ['value1', 'value2']}``) alternative as well. It is also possible to pass a list of 2 item tuples as parameters, in that case you can specify multiple values for each key::