From c095fccf685e60a9b0f9975639874dbcf85065f7 Mon Sep 17 00:00:00 2001 From: Kirill Barsukov <43782731+KirillSBarsukov@users.noreply.github.com> Date: Mon, 12 Dec 2022 08:19:28 -0500 Subject: [PATCH] Add missing 's' in docs - additional-decorators.md (#339) --- docs/advanced/additional-decorators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced/additional-decorators.md b/docs/advanced/additional-decorators.md index 925ab7e39..5d60fa9e1 100644 --- a/docs/advanced/additional-decorators.md +++ b/docs/advanced/additional-decorators.md @@ -155,7 +155,7 @@ applyRelationResolversEnhanceMap({ }); ``` -In case of other output types like `AggregateFooBar`, you can use the same pattern but this time using the `applyOutputTypeEnhanceMap` function and `OutputTypeConfig` or `OutputTypesEnhanceMap` types: +In case of other output types like `AggregateFooBar`, you can use the same pattern but this time using the `applyOutputTypesEnhanceMap` function and `OutputTypeConfig` or `OutputTypesEnhanceMap` types: ```ts const aggregateClientConfig: OutputTypeConfig<"AggregateClient"> = { @@ -164,7 +164,7 @@ const aggregateClientConfig: OutputTypeConfig<"AggregateClient"> = { }, }; -applyOutputTypeEnhanceMap({ +applyOutputTypesEnhanceMap({ // separate config AggregateClient: aggregateClientConfig, // or an inline one