]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore(reactivity): fix typo in types (#4889)
authorMarvin Rudolph <rudolph.marvin@web.de>
Tue, 2 Nov 2021 19:19:39 +0000 (20:19 +0100)
committerGitHub <noreply@github.com>
Tue, 2 Nov 2021 19:19:39 +0000 (20:19 +0100)
packages/reactivity/src/computed.ts

index 11af231b4cdbc112fcfbd4830d72affeb5710a1d..c7f7b0515547038bb1204c0c41bb4e3022567b81 100644 (file)
@@ -4,11 +4,11 @@ import { isFunction, NOOP } from '@vue/shared'
 import { ReactiveFlags, toRaw } from './reactive'
 import { Dep } from './dep'
 
-declare const ComoutedRefSymbol: unique symbol
+declare const ComputedRefSymbol: unique symbol
 
 export interface ComputedRef<T = any> extends WritableComputedRef<T> {
   readonly value: T
-  [ComoutedRefSymbol]: true
+  [ComputedRefSymbol]: true
 }
 
 export interface WritableComputedRef<T> extends Ref<T> {