From ec2fd4a15f6c0ec612c38a9596c56cd87477d0f9 Mon Sep 17 00:00:00 2001 From: Mike Roelens Date: Tue, 19 Jan 2021 11:30:17 -0500 Subject: [PATCH] docs(client): fix typo in httpbin.org domain (#2406) --- src/client/client.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/client/client.rs b/src/client/client.rs index 3ab70847..d213b99c 100644 --- a/src/client/client.rs +++ b/src/client/client.rs @@ -147,7 +147,7 @@ where /// /// let req = Request::builder() /// .method("POST") - /// .uri("http://httpin.org/post") + /// .uri("http://httpbin.org/post") /// .body(Body::from("Hallo!")) /// .expect("request builder"); ///