Skip to content

Commit

Permalink
Fix typo in disable-upgrade-mixin.js
Browse files Browse the repository at this point in the history
intialize -> initialize
  • Loading branch information
eltociear authored Aug 10, 2021
1 parent b19365c commit 5c06ae9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixins/disable-upgrade-mixin.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 5c06ae9

Please sign in to comment.