From 5c1322d163bb8a33250924a23fb11f39ac59b176 Mon Sep 17 00:00:00 2001 From: Amirhossein Alibakhshi Date: Mon, 26 May 2025 13:29:50 +0330 Subject: [PATCH] =?UTF-8?q?fix(blog):=20resolve=20typo=20in=20React=2019?= =?UTF-8?q?=20blog=20post=20(`refs`=20=E2=86=92=20`ref`s)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR corrects a small typo in the React documentation, changing "`refs`" to "`ref`s" for accuracy and consistency. --- src/content/blog/2024/12/05/react-19.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/blog/2024/12/05/react-19.md b/src/content/blog/2024/12/05/react-19.md index aac80a44fb4..65bf42757a4 100644 --- a/src/content/blog/2024/12/05/react-19.md +++ b/src/content/blog/2024/12/05/react-19.md @@ -410,7 +410,7 @@ New function components will no longer need `forwardRef`, and we will be publish -`refs` passed to classes are not passed as props since they reference the component instance. +`ref`s passed to classes are not passed as props since they reference the component instance.