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 {}