From abf0316ee3c7d409e714ced9b5aaf04ef4ea83fe 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) (cherry picked from commit 13fd83ee73aa584174ebe3b8c4e19e4c5fcddfd7) --- 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 e96dca453a1..7426a06a5bd 100644 --- a/docs/client_quickstart.rst +++ b/docs/client_quickstart.rst @@ -96,9 +96,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::