From c8e2cd2490d2ee59cd53cf51a272748cf6301f13 Mon Sep 17 00:00:00 2001 From: 0x676e67 Date: Thu, 20 Feb 2025 10:11:10 +0800 Subject: [PATCH] docs(client): fix typo --- src/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client.rs b/src/client.rs index aae362bf..8f79f814 100644 --- a/src/client.rs +++ b/src/client.rs @@ -153,7 +153,7 @@ impl Client { /// /// async def main(): /// client = rnet.Client() - /// response = await client.post("://httpbin.org/post", json={"key": "value"}) + /// response = await client.post("https://httpbin.org/post", json={"key": "value"}) /// print(await response.text()) /// /// asyncio.run(main())