File tree 1 file changed +1
-1
lines changed
src/compiler/compile/render_dom/wrappers/Element
1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ export default class AttributeWrapper extends BaseAttributeWrapper {
70
70
const namespace = this . parent . node . namespace ;
71
71
// some processing only applies to html namespace (and not MathML, SVG, or Svelte Native etc)
72
72
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
74
74
// namespaces for which we don't have case corrections, are left in their original case (required for svelte-native)
75
75
this . name = ( valid_namespaces . indexOf ( namespace ) >= 0 ) ? fix_attribute_casing ( this . node . name ) : this . node . name ;
76
76
this . is_indirectly_bound_value = false ;
You can’t perform that action at this time.
0 commit comments