Skip to content

Commit 31f901c

Browse files
committed
.
1 parent 597b1ef commit 31f901c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/forbid-dom-props.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ module.exports = {
9797
return {
9898
JSXAttribute(node) {
9999
const parentName = node.parent.name;
100-
// Extract a component name when using a "namespace", e.g. `<htmo.div />`.
100+
// Extract a component name when using a "namespace", e.g. `<html.div />`.
101101
const tag = parentName.name || `${parentName.object.name}.${parentName.property.name}`;
102102
const componentName = parentName.name || parentName.property.name;
103103
const isDomNode = componentName && typeof componentName[0] === 'string' && componentName[0] !== componentName[0].toUpperCase();

0 commit comments

Comments
 (0)