From c695bfd0fe99aecf215673fa7fac42fb7513d665 Mon Sep 17 00:00:00 2001 From: mkosir Date: Sat, 16 Mar 2024 20:49:11 +0100 Subject: [PATCH] update docusaurus --- website/src/pages/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/src/pages/index.mdx b/website/src/pages/index.mdx index 4bf772b4..1c1c952d 100644 --- a/website/src/pages/index.mdx +++ b/website/src/pages/index.mdx @@ -73,7 +73,7 @@ As an exception mutations should be used sparingly in cases where truly necessar ## Types When creating types we try to think of how they would best **describe our code**. -Being expressive and keeping them as **narrow as possible** brings benefits to the codebase: +Being expressive and keeping types as **narrow as possible** brings benefits to the codebase: - Increased Type Safety - Catch errors at compile-time, since narrowed types provide more specific information about the shape and behavior of your data. - Improved Code Clarity - Reduced cognitive load by providing clearer boundaries and constraints on your data which makes your code easier to understand by other developers.