From cb637f112425b4ba666c6b264965612b630f3f73 Mon Sep 17 00:00:00 2001 From: Sagi Sarussi Date: Wed, 18 Aug 2021 09:02:45 +0300 Subject: [PATCH] Fix typo (#202) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2cf34429..a80e1ef4 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ async fn create_user( username: payload.username, }; - // this will be converted into an JSON response + // this will be converted into a JSON response // with a status code of `201 Created` (StatusCode::CREATED, response::Json(user)) }