From 1c4655e0d79aec5dac4e831b523ee0e7295307e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Mon, 1 Aug 2022 14:38:07 +0200 Subject: [PATCH] http protocol: improve doc comment for Request::from_http_get_path --- aquatic_http_protocol/src/request.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aquatic_http_protocol/src/request.rs b/aquatic_http_protocol/src/request.rs index 61abdb1..9cd8cc1 100644 --- a/aquatic_http_protocol/src/request.rs +++ b/aquatic_http_protocol/src/request.rs @@ -275,7 +275,7 @@ impl Request { } } - /// Parse Request from http path (GET `/announce?info_hash=...`) + /// Parse Request from http GET path (`/announce?info_hash=...`) /// /// Existing serde-url decode crates were insufficient, so the decision was /// made to create a custom parser. serde_urlencoded doesn't support multiple