From 4aadda8ad369b0469bd2ae42726b6c7997eb67a7 Mon Sep 17 00:00:00 2001 From: Jarobi Date: Sun, 17 Jan 2021 12:47:37 +0100 Subject: [PATCH] Fix typo in doc of `into_json` --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index f6fb9bf..abaff06 100644 --- a/src/response.rs +++ b/src/response.rs @@ -321,7 +321,7 @@ impl Response { } /// Read the body of this response into a serde_json::Value, or any other type that - // implements the [serde::Deserialize] trait. + /// implements the [serde::Deserialize] trait. /// /// You must use either a type annotation as shown below (`message: Message`), or the /// [turbofish operator] (`::`) so Rust knows what type you are trying to read.