From efdd55421fe0dd885a29c019a7a11b62db38437d Mon Sep 17 00:00:00 2001 From: SwayStar123 <46050679+SwayStar123@users.noreply.github.com> Date: Sun, 26 Feb 2023 16:59:26 +0530 Subject: [PATCH] Update request.rs --- src/request.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/request.rs b/src/request.rs index 1eda90d..39bf002 100644 --- a/src/request.rs +++ b/src/request.rs @@ -197,7 +197,7 @@ impl Request { } let json_bytes = serde_json::to_vec(&data) - .expect("Failed to serialze data passed to send_json into JSON"); + .expect("Failed to serialize data passed to send_json into JSON"); self.do_call(Payload::Bytes(&json_bytes)) }