diff --git a/content/200-concepts/100-components/01-prisma-schema/06-relations/200-one-to-many-relations.mdx b/content/200-concepts/100-components/01-prisma-schema/06-relations/200-one-to-many-relations.mdx index a69082ac3e..e8b1715b5e 100644 --- a/content/200-concepts/100-components/01-prisma-schema/06-relations/200-one-to-many-relations.mdx +++ b/content/200-concepts/100-components/01-prisma-schema/06-relations/200-one-to-many-relations.mdx @@ -179,7 +179,7 @@ The following MongoDB document represents a `User`: { "_id": { "$oid": "60d5922d00581b8f0062e3a8" }, "name": "Ella" } ``` -The following list of `Post` MongoDB documents each have a `userId` field which reference the same user: +Each of the following `Post` MongoDB documents has an `authorId` field which references the same user: ```json [