From 5dca5201881bedcda8baaaac1c9376f796c1b23c Mon Sep 17 00:00:00 2001 From: Amirhossein Alibakhshi Date: Tue, 3 Jun 2025 22:39:55 +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)=20(#7828)?= 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 aac80a44f..65bf42757 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.