From aa24eeeb92f99794d085ac8192ecb50bfad82851 Mon Sep 17 00:00:00 2001 From: ma3he6sh9 Date: Mon, 27 Sep 2021 09:36:44 +1000 Subject: [PATCH] removed duplicated word --- pages/docs/react/latest/components-and-props.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/docs/react/latest/components-and-props.mdx b/pages/docs/react/latest/components-and-props.mdx index 021e647ea..160eb515b 100644 --- a/pages/docs/react/latest/components-and-props.mdx +++ b/pages/docs/react/latest/components-and-props.mdx @@ -144,7 +144,7 @@ var greeting = React.createElement(Playground$Greeting, tmp); ### Special Props `key` and `ref` -You can't define any props called `key` or `ref`. React treats those props differently and the compiler will will yield an error whenever you try to define a `~key` or `~ref` argument in your component function. +You can't define any props called `key` or `ref`. React treats those props differently and the compiler will yield an error whenever you try to define a `~key` or `~ref` argument in your component function. Check out the corresponding [Arrays and Keys](./arrays-and-keys) and [Forwarding React Refs](./forwarding-refs) sections for more details.