From cb5dca6ab12ba37ee80ee9d9f4b14f973e5b0d49 Mon Sep 17 00:00:00 2001 From: se-ul Date: Wed, 12 Oct 2022 19:04:16 +0900 Subject: [PATCH] docs: fix typo in usePinchZoom (#2394) --- docs/usePinchZoom.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/usePinchZoom.md b/docs/usePinchZoom.md index 212283d3..12449fac 100644 --- a/docs/usePinchZoom.md +++ b/docs/usePinchZoom.md @@ -1,11 +1,11 @@ -# `usePinchZoon` +# `usePinchZoom` React sensor hook that tracks the changes in pointer touch events and detects value of pinch difference and tell if user is zooming in or out. ## Usage ```jsx -import { usePinchZoon } from "react-use"; +import { usePinchZoom } from "react-use"; const Demo = () => { const [scale, setState] = useState(1);