diff --git a/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx b/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx index 500c348716..314393eaee 100644 --- a/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx +++ b/content/200-concepts/100-components/02-prisma-client/037-relation-queries.mdx @@ -295,7 +295,7 @@ Note that you **cannot** use `select` and `include` _on the same level_. This me ```ts -// The follwing query returns an exception +// The following query returns an exception const getUser = await prisma.user.findUnique({ where: { id: 19, @@ -347,7 +347,7 @@ Please either use `include` or `select`, but not both at the same time. Instead, use nested `select` options: ```ts -// The follwing query returns an exception +// The following query returns an exception const getUser = await prisma.user.findUnique({ where: { id: 19,