Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Oct 14, 2019
1 parent d0eabc2 commit 50b0fce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/web_quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ Routes can also be given a *name*::
Which can then be used to access and build a *URL* for that resource later (e.g.
in a :ref:`request handler <aiohttp-web-handler>`)::

url == request.app.router['root'].url_for().with_query({"a": "b", "c": "d"})
url = request.app.router['root'].url_for().with_query({"a": "b", "c": "d"})
assert url == URL('/root?a=b&c=d')

A more interesting example is building *URLs* for :ref:`variable
Expand Down

0 comments on commit 50b0fce

Please sign in to comment.