From 9670eaf04d01a21902cdef733d37f5f32c1b8650 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sat, 6 Mar 2021 20:44:31 +0100 Subject: [PATCH] Fix the link to `MultiDict` in `client_quickstart.rst` (#5517) --- 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 e030ce92d38..e82b44ac34c 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::