From 139548e0e07ee281079ef8aabbfd8077a548476f Mon Sep 17 00:00:00 2001 From: sq800 <63217984+sq800@users.noreply.github.com> Date: Wed, 7 Aug 2024 10:57:39 +0800 Subject: [PATCH] chore: fix typo (#11535) [ci skip] --- packages/reactivity/src/baseHandlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/reactivity/src/baseHandlers.ts b/packages/reactivity/src/baseHandlers.ts index 943f32957..b0292f62a 100644 --- a/packages/reactivity/src/baseHandlers.ts +++ b/packages/reactivity/src/baseHandlers.ts @@ -115,7 +115,7 @@ class BaseReactiveHandler implements ProxyHandler { : reactiveMap ).get(target) || // receiver is not the reactive proxy, but has the same prototype - // this means the reciever is a user proxy of the reactive proxy + // this means the receiver is a user proxy of the reactive proxy Object.getPrototypeOf(target) === Object.getPrototypeOf(receiver) ) { return target