From c5c28c2e105dfbda2a4ca10bc8812c6411f4c76f Mon Sep 17 00:00:00 2001 From: Ajit Date: Fri, 16 Dec 2022 14:58:33 +0530 Subject: [PATCH] refactor: fix typo in js doc --- packages/core/src/hooks/useResize.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/hooks/useResize.ts b/packages/core/src/hooks/useResize.ts index 2552ab372b..2c696a50df 100644 --- a/packages/core/src/hooks/useResize.ts +++ b/packages/core/src/hooks/useResize.ts @@ -13,7 +13,7 @@ export interface UseResizeOptions extends Omit { * A small abstraction around the `useSpring` hook. It returns a `SpringValues` * object with the `width` and `height` of the element it's attached to & doesn't * necessarily have to be attached to the window, by passing a `container` you - * can obsere that element's size instead. + * can observe that element's size instead. * ```jsx import { useResize, animated } from '@react-spring/web'