From 2a466da3c83e2b4d0e42a03bab0abdb6d407d065 Mon Sep 17 00:00:00 2001 From: Flouse Date: Sat, 4 Mar 2023 09:01:32 +0800 Subject: [PATCH] docs: fix typo in utility-types.md (#7746) --- docs/docs/typescript/utility-types.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/typescript/utility-types.md b/docs/docs/typescript/utility-types.md index 58a09e51f824..0c49b59cc7c3 100644 --- a/docs/docs/typescript/utility-types.md +++ b/docs/docs/typescript/utility-types.md @@ -134,7 +134,7 @@ It takes three generic parameters: |:--------|:---------------------------------------------------------------------------------| | `TData` | The Prisma model that'll be returned | | `TName` | (Optional) the name of the model. ("post" in the example below) | -| `TKeys` | (optional) the keys(s) used to define the scenario. ("one" in the example below) | +| `TKeys` | (optional) the key(s) used to define the scenario. ("one" in the example below) | We know this is a lot of generics, but that's so you get to choose how specific you want to be with the types!