]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore(reactivity): fix typo in dep (#4534) [ci skip]
authorn2ptune <44240708+n2ptune@users.noreply.github.com>
Tue, 7 Sep 2021 15:31:12 +0000 (00:31 +0900)
committerGitHub <noreply@github.com>
Tue, 7 Sep 2021 15:31:12 +0000 (11:31 -0400)
packages/reactivity/src/dep.ts

index 546f99e0f4e5a3374b8ca0447845250e56a4cf09..8677f575756bcd16a6a2d4887591320d00452809 100644 (file)
@@ -4,7 +4,7 @@ export type Dep = Set<ReactiveEffect> & 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 = {