From d7d3e0712cf35e2bba5932c2b56d8fbde878f9bf Mon Sep 17 00:00:00 2001 From: nayni Date: Sat, 10 Mar 2018 15:03:13 +0100 Subject: [PATCH] jsdocs: @return should be @param --- types/graphql-resolve-batch/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/graphql-resolve-batch/index.d.ts b/types/graphql-resolve-batch/index.d.ts index 3818304537..ea90a83555 100644 --- a/types/graphql-resolve-batch/index.d.ts +++ b/types/graphql-resolve-batch/index.d.ts @@ -18,7 +18,7 @@ * @template TReturn The return type of the field resolver. * @template TArgs The type of supplied arguments. * @template TContext The type of the current resolver context. - * @returns A batch function to resolve all fields for the given sources in a single batch. + * @param batchResolveFn A batch function to resolve all fields for the given sources in a single batch. */ export function createBatchResolver< TSource,