From ebf8096a5f030b7a348cc0384680f78b5f443dd9 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Wed, 4 Dec 2024 08:37:22 -0700 Subject: [PATCH] Fix contraction Co-authored-by: Maria Elisabeth Schreiber --- docs/source/data/fragments.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/data/fragments.mdx b/docs/source/data/fragments.mdx index 3c76d0c7046..2cacc9e52ec 100644 --- a/docs/source/data/fragments.mdx +++ b/docs/source/data/fragments.mdx @@ -1234,7 +1234,7 @@ const QUERY: MaskedDocumentNode = gql` #### Using with fragments -When using [colocated fragments](#colocating-fragments) with your components, its best to ensure the object passed to your component is done in a type safe way. This means: +When using [colocated fragments](#colocating-fragments) with your components, it's best to ensure the object passed to your component is done in a type-safe way. This means: - TypeScript prevents you from accessing fields on the object that may be defined with the parent. - The object passed to the component is guaranteed to contain a fragment reference of the same type.