From 04fb90d574d8d18e7da4a47277af750aa93c5755 Mon Sep 17 00:00:00 2001 From: Matt Murphy <63432827+mattmurph9@users.noreply.github.com> Date: Thu, 3 Jun 2021 10:31:54 +0200 Subject: [PATCH] Fix typos in comments --- src/augment/augment.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/augment/augment.js b/src/augment/augment.js index a0f26ff6..f89ac36d 100644 --- a/src/augment/augment.js +++ b/src/augment/augment.js @@ -40,7 +40,7 @@ export const makeAugmentedExecutableSchema = ({ const isParsedTypeDefs = isSchemaDocument({ definition: typeDefs }); let definitions = []; if (isParsedTypeDefs) { - // Print if we recieved parsed type definitions in a GraphQL Document + // Print if we received parsed type definitions in a GraphQL Document definitions = _.cloneDeep(typeDefs.definitions); } else { // Otherwise parse the SDL and get its definitions @@ -123,7 +123,7 @@ export const makeAugmentedExecutableSchema = ({ }; /** - * The main export for augmnetation a schema + * The main export for augmenting a schema */ export const augmentedSchema = (schema, config) => { config = setDefaultConfig({ config }); @@ -364,7 +364,7 @@ export const extractSchemaDefinitions = ({ schema = {} }) => { }; /** - * Getter for an array of type names excludes from an operation type + * Getter for an array of type names excluded from an operation type */ const getExcludedTypes = (config, operationTypeName) => { return config &&