From 78d97e26e43e955b404c921dc619fa5799c6436d Mon Sep 17 00:00:00 2001 From: hampusek <61224441+hampusek@users.noreply.github.com> Date: Fri, 27 Sep 2024 12:00:08 +0200 Subject: [PATCH] fix small typo in request.md (#463) --- docs/request.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/request.md b/docs/request.md index 2169ac43..33139a64 100644 --- a/docs/request.md +++ b/docs/request.md @@ -10,7 +10,7 @@ There are several options for json body deserialization. The first option is to use _Json_ extractor. First, you define a handler function that accepts `Json` as a parameter, then, you use the `.to()` method for registering this handler. It is also possible to accept arbitrary valid json object by using `serde_json::Value` as a type `T`. -First example of json of `JSON Request` depends on `serde`: +First example of `JSON Request` depends on `serde`: ```toml [dependencies]