From a34aff02c03d68bc52433c7379b60b9f1bc5a023 Mon Sep 17 00:00:00 2001 From: Ben Rollin Date: Tue, 9 May 2023 03:52:30 -0700 Subject: [PATCH] fix README typo (#1436) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 982e7db25..051c3e2bc 100644 --- a/README.md +++ b/README.md @@ -774,7 +774,7 @@ A hook for a quick way to add helpers to existing nodes in the scene. It handles ```jsx const mesh = useRef() useHelper(mesh, BoxHelper, 'cyan') -useHelper(condition && mesh, BoxHelper, 'red') // you can passe false instead of the object ref to hide the helper +useHelper(condition && mesh, BoxHelper, 'red') // you can pass false instead of the object ref to hide the helper ```