From 874677fa81bbf288c9f62063e945049a20d63e36 Mon Sep 17 00:00:00 2001 From: Pierre Tachoire Date: Mon, 18 Dec 2023 21:52:15 +0100 Subject: [PATCH] Update src/dom/document.zig Co-authored-by: Francis Bouvier --- src/dom/document.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dom/document.zig b/src/dom/document.zig index 0c76ae58..5157e86b 100644 --- a/src/dom/document.zig +++ b/src/dom/document.zig @@ -194,7 +194,7 @@ pub const Document = struct { // TODO netsurf doesn't handle query selectors. We have to implement a // solution by ourselves. - // We handle only * and single id selector like `#foo`. + // For now we handle only * and single id selector like `#foo`. pub fn _querySelector(self: *parser.Document, selectors: []const u8) !?ElementUnion { if (selectors.len == 0) return null;