From 7818173c86650d09c674eec56be91460d5fddf49 Mon Sep 17 00:00:00 2001 From: jsus Date: Fri, 24 Sep 2021 14:41:58 +0300 Subject: [PATCH] Quickfix --- docs/book/content/types/objects/using_contexts.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/book/content/types/objects/using_contexts.md b/docs/book/content/types/objects/using_contexts.md index a2174ad4..027b61a6 100644 --- a/docs/book/content/types/objects/using_contexts.md +++ b/docs/book/content/types/objects/using_contexts.md @@ -107,7 +107,7 @@ struct Database { // Since we cannot directly implement juniper::Context // for RwLock we use the newtype idiom -struct DatabaseContext(RwLock) +struct DatabaseContext(RwLock); impl juniper::Context for DatabaseContext {}