Fix typo in disable-upgrade-mixin.js

intialize -> initialize
This commit is contained in:
Ikko Ashimine
2021-08-10 23:03:50 +09:00
committed by GitHub
parent b19365c172
commit 5c06ae9bc0
+1 -1
View File
@@ -126,7 +126,7 @@ export const DisableUpgradeMixin = dedupingMixin((base) => {
*/
attributeChangedCallback(name, old, value, namespace) {
if (name == DISABLED_ATTR) {
// When disable-upgrade is removed, intialize properties and
// When disable-upgrade is removed, initialize properties and
// provoke connectedCallback if the element is already connected.
if (this.__isUpgradeDisabled && value == null) {
super._initializeProperties();