From ff7922a1a51b46957b27b19dfb4cc23e7d4c7047 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Thu, 15 Apr 2021 09:44:27 -0400 Subject: [PATCH] chore(vue): fix typo in comments (#23192) --- packages/vue/src/vue-component-lib/overlays.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/vue/src/vue-component-lib/overlays.ts b/packages/vue/src/vue-component-lib/overlays.ts index 5dd39d23e7..dbc253e111 100644 --- a/packages/vue/src/vue-component-lib/overlays.ts +++ b/packages/vue/src/vue-component-lib/overlays.ts @@ -9,7 +9,7 @@ export const defineOverlayContainer = (name: string, compo /** * Vue 3.0.6 fixed a bug where events on custom elements * were always converted to lower case, so "ionRefresh" - * became "ionRefresh". We need to account for the old + * became "ionrefresh". We need to account for the old * issue as well as the new behavior where "ionRefresh" * is converted to "ion-refresh". * See https://github.com/vuejs/vue-next/pull/2847