From 5eeffb3f3bfb48a8b8f90959dde50985c1c56d6a Mon Sep 17 00:00:00 2001 From: Christopher Kumm <40023417+ChrisCrossCrash@users.noreply.github.com> Date: Wed, 21 Apr 2021 21:05:51 +0300 Subject: [PATCH] Fixed typo Fixed an issue where a paragraph described three different options as two. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a6056dca..211f610d 100644 --- a/README.md +++ b/README.md @@ -510,7 +510,7 @@ function DelayedEffect(props: { timerMs: number }) { ## useRef -When using `useRef`, you have two options when creating a ref container that does not have an initial value: +When using `useRef`, you have three options when creating a ref container that does not have an initial value: ```ts const ref1 = useRef(null!);