From 376b86cd07d4d9d93600272fdb42d0f05f1a384c Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 19 Apr 2022 17:54:07 +0900 Subject: [PATCH] Fix typo in validateWithCustomRules.ts (#2318) determing -> determining --- .../src/utils/validateWithCustomRules.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/graphql-language-service/src/utils/validateWithCustomRules.ts b/packages/graphql-language-service/src/utils/validateWithCustomRules.ts index cce9b65e608..aa955e0e837 100644 --- a/packages/graphql-language-service/src/utils/validateWithCustomRules.ts +++ b/packages/graphql-language-service/src/utils/validateWithCustomRules.ts @@ -63,7 +63,7 @@ export function validateWithCustomRules( isSchemaDocument?: boolean, ): Array { const rules = specifiedRules.filter(rule => { - // Because every fragment is considered for determing model subsets that may + // Because every fragment is considered for determining model subsets that may // be used anywhere in the codebase they're all technically "used" by clients // of graphql-data. So we remove this rule from the validators. if (rule === NoUnusedFragmentsRule || rule === ExecutableDefinitionsRule) {