Fix typo in 'input' selector check

Fix a small typo in selector check
This commit is contained in:
Sasan Hezarkhani
2025-10-20 21:30:35 -07:00
committed by GitHub
parent fe3777041d
commit 9a03ba61c5

View File

@@ -562,7 +562,7 @@ pub const Selector = union(enum) {
const ntag = try n.tag();
if (std.ascii.eqlIgnoreCase("intput", ntag)) {
if (std.ascii.eqlIgnoreCase("input", ntag)) {
const ntype = try n.attr("type");
if (ntype == null) return false;