From 772574febb95b9ad79d0381455d10dc52880bfb6 Mon Sep 17 00:00:00 2001 From: n2ptune <44240708+n2ptune@users.noreply.github.com> Date: Fri, 3 Dec 2021 18:10:54 +0900 Subject: [PATCH] chore(custom-element): fix comment typo (#5028) [skip ci] --- packages/runtime-dom/src/apiCustomElement.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/runtime-dom/src/apiCustomElement.ts b/packages/runtime-dom/src/apiCustomElement.ts index 5127e4a4..059fcac1 100644 --- a/packages/runtime-dom/src/apiCustomElement.ts +++ b/packages/runtime-dom/src/apiCustomElement.ts @@ -321,7 +321,7 @@ export class VueElement extends BaseClass { // HMR if (__DEV__) { instance.ceReload = newStyles => { - // alawys reset styles + // always reset styles if (this._styles) { this._styles.forEach(s => this.shadowRoot!.removeChild(s)) this._styles.length = 0