chore: fix typo (#108)

This commit is contained in:
扩散性百万甜面包 2019-10-06 03:39:47 +08:00 committed by Evan You
parent 8133b3867a
commit 842f235ede

View File

@ -63,7 +63,7 @@ export function readonly<T extends object>(
target: T
): Readonly<UnwrapNestedRefs<T>>
export function readonly(target: object) {
// value is a mutable observable, retrive its original and return
// value is a mutable observable, retrieve its original and return
// a readonly version.
if (reactiveToRaw.has(target)) {
target = reactiveToRaw.get(target)