From: n2ptune <44240708+n2ptune@users.noreply.github.com> Date: Tue, 7 Sep 2021 15:31:12 +0000 (+0900) Subject: chore(reactivity): fix typo in dep (#4534) [ci skip] X-Git-Tag: v3.2.10~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2361ca4fc2ce0555c0bade229d2e1ad41c2bdafb;p=thirdparty%2Fvuejs%2Fcore.git chore(reactivity): fix typo in dep (#4534) [ci skip] --- diff --git a/packages/reactivity/src/dep.ts b/packages/reactivity/src/dep.ts index 546f99e0f4..8677f57575 100644 --- a/packages/reactivity/src/dep.ts +++ b/packages/reactivity/src/dep.ts @@ -4,7 +4,7 @@ export type Dep = Set & TrackedMarkers /** * wasTracked and newTracked maintain the status for several levels of effect - * tracking recursion. One bit per level is used to define wheter the dependency + * tracking recursion. One bit per level is used to define whether the dependency * was/is tracked. */ type TrackedMarkers = {