Browse Source

chore: typo (#1113)

Jackliu 6 years ago
parent
commit
42a99d28ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/reactivity/src/reactive.ts

+ 1 - 1
packages/reactivity/src/reactive.ts

@@ -111,7 +111,7 @@ function createReactiveObject(
     return target
   }
   // target is already a Proxy, return it.
-  // excpetion: calling readonly() on a reactive object
+  // exception: calling readonly() on a reactive object
   if (target.__v_raw && !(isReadonly && target.__v_isReactive)) {
     return target
   }