chore(reactivity): fix typo in dep (#4534) [ci skip]

This commit is contained in:
n2ptune 2021-09-08 00:31:12 +09:00 committed by GitHub
parent 7575733b8c
commit 2361ca4fc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ export type Dep = Set<ReactiveEffect> & TrackedMarkers
/** /**
* wasTracked and newTracked maintain the status for several levels of effect * 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. * was/is tracked.
*/ */
type TrackedMarkers = { type TrackedMarkers = {