From ad19847629358bb2df2e59d9b138489f0d283f82 Mon Sep 17 00:00:00 2001 From: Chris Bowling <31601365+cbowling@users.noreply.github.com> Date: Thu, 15 Aug 2024 12:06:33 -0400 Subject: [PATCH] fix typo in `extensions-of-props.mdx` --- pages/docs/react/latest/extensions-of-props.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/react/latest/extensions-of-props.mdx b/pages/docs/react/latest/extensions-of-props.mdx index adda00760..9f5c76eba 100644 --- a/pages/docs/react/latest/extensions-of-props.mdx +++ b/pages/docs/react/latest/extensions-of-props.mdx @@ -131,7 +131,7 @@ module Screen: { /> ``` -This example cann't pass the type checker, because the props types of both components are nominally different. You can make the both components having the same props type by passing `screenProps` type as argument to `@react.component`. +This example can't pass the type checker, because the props types of both components are nominally different. You can make the both components having the same props type by passing `screenProps` type as argument to `@react.component`. ```res module A = {