Skip to content

Commit d56f115

Browse files
authored
chore(reactivity): fix typo in types (#4889)
1 parent fe853a5 commit d56f115

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/reactivity/src/computed.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ import { isFunction, NOOP } from '@vue/shared'
44
import { ReactiveFlags, toRaw } from './reactive'
55
import { Dep } from './dep'
66

7-
declare const ComoutedRefSymbol: unique symbol
7+
declare const ComputedRefSymbol: unique symbol
88

99
export interface ComputedRef<T = any> extends WritableComputedRef<T> {
1010
readonly value: T
11-
[ComoutedRefSymbol]: true
11+
[ComputedRefSymbol]: true
1212
}
1313

1414
export interface WritableComputedRef<T> extends Ref<T> {

0 commit comments

Comments
 (0)