authorgravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-02-02 20:02:27 -08:00
committergravatar for hello@nektro.netMeghan Denny <hello@nektro.net> 2026-02-02 20:02:27 -08:00
log4c7c470735f8d41ad7f04518107f6e4c5fa26984
tree85482942893371f848e07141398528b4223f3139
parent7a92d878ee9739b7c67be09904f332fad1f1fdaa

take URL.isSpecial by pointer


1 files changed, 1 insertions(+), 1 deletions(-)

url.zig+1-1
......@@ -882,7 +882,7 @@ pub const URL = struct {
882882 fragment,
883883 };
884884
885 pub fn isSpecial(u: URL) bool {
885 pub fn isSpecial(u: *const URL) bool {
886886 return isSchemeSpecial(u.scheme);
887887 }
888888};