From 4daeb2c1cf1e9dfb3c38da34d02095f4cb182389 Mon Sep 17 00:00:00 2001 From: Sviatoslav Sydorenko Date: Sun, 6 Jun 2021 21:02:01 +0200 Subject: [PATCH] Drop an unnecessary colon --- docs/whats_new_1_1.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/whats_new_1_1.rst b/docs/whats_new_1_1.rst index f038c264e23..7b5305efbf5 100644 --- a/docs/whats_new_1_1.rst +++ b/docs/whats_new_1_1.rst @@ -32,7 +32,7 @@ parameter. :class:`str` is still supported and will be supported forever. Reverse URL processing for *router* has been changed. -The main API is :``aiohttp.web.Request.url_for`` +The main API is ``aiohttp.web.Request.url_for`` which returns a :class:`yarl.URL` instance for named resource. It does not support *query args* but adding *args* is trivial: ``request.url_for('named_resource', param='a').with_query(arg='val')``.