Skip to content

Commit b038bce

Browse files
committed
typo fix
1 parent 6b669ec commit b038bce

File tree

1 file changed

+1
-1
lines changed
  • src/compiler/compile/render_dom/wrappers/Element

1 file changed

+1
-1
lines changed

src/compiler/compile/render_dom/wrappers/Element/Attribute.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export default class AttributeWrapper extends BaseAttributeWrapper {
7070
const namespace = this.parent.node.namespace;
7171
// some processing only applies to html namespace (and not MathML, SVG, or Svelte Native etc)
7272
if (namespace && namespace != 'html' && namespace != namespaces.html) {
73-
// attributes outside of the html namespaced may be case sensitive
73+
// attributes outside of the html namespace may be case sensitive
7474
// namespaces for which we don't have case corrections, are left in their original case (required for svelte-native)
7575
this.name = (valid_namespaces.indexOf(namespace) >= 0) ? fix_attribute_casing(this.node.name) : this.node.name;
7676
this.is_indirectly_bound_value = false;

0 commit comments

Comments
 (0)