From f31a6c105db4989f1dfec5866a9aa76fa046c937 Mon Sep 17 00:00:00 2001
From: tryag <40431305+Notryag@users.noreply.github.com>
Date: Wed, 22 Sep 2021 00:35:42 +0800
Subject: [PATCH] chore: fix type in compatConfig.ts (#4604) [ci skip]

---
 packages/runtime-core/src/compat/compatConfig.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/runtime-core/src/compat/compatConfig.ts b/packages/runtime-core/src/compat/compatConfig.ts
index b2d130cb..c1c32a1f 100644
--- a/packages/runtime-core/src/compat/compatConfig.ts
+++ b/packages/runtime-core/src/compat/compatConfig.ts
@@ -429,7 +429,7 @@ export const deprecationData: Record<DeprecationTypes, DeprecationData> = {
     message: name =>
       `"${name}" is a Vue 2 private API that no longer exists in Vue 3. ` +
       `If you are seeing this warning only due to a dependency, you can ` +
-      `suppress this warning via { PRIVATE_APIS: 'supress-warning' }.`
+      `suppress this warning via { PRIVATE_APIS: 'suppress-warning' }.`
   }
 }