From ca6447521ee647bea40f418269a05521289249c0 Mon Sep 17 00:00:00 2001 From: Andreas Denkmayr Date: Fri, 10 Feb 2023 16:33:37 +0100 Subject: [PATCH] docs: arguments spelling --- .../version-6.x.x/schema-generator/execution/contextual-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/versioned_docs/version-6.x.x/schema-generator/execution/contextual-data.md b/website/versioned_docs/version-6.x.x/schema-generator/execution/contextual-data.md index b29c791d91..66267e1192 100644 --- a/website/versioned_docs/version-6.x.x/schema-generator/execution/contextual-data.md +++ b/website/versioned_docs/version-6.x.x/schema-generator/execution/contextual-data.md @@ -63,7 +63,7 @@ Note that the argument that implements `GraphQLContext` is not reflected in the ## Handling Context Errors The [GraphQLContextFactory](../../server/graphql-context-factory.md) may return `null`. If your factory implementation never returns `null`, then there is no need to change your schema. -If the factory could return `null`, then the context arugments in your schema should be nullable so a runtime exception is not thrown. +If the factory could return `null`, then the context arguments in your schema should be nullable so a runtime exception is not thrown. ```kotlin class ContextualQuery : Query {