Update src/url.zig

Co-authored-by: Sjors <72333389+sjorsdonkers@users.noreply.github.com>
This commit is contained in:
Karl Seguin
2025-07-17 20:45:42 +08:00
committed by GitHub
parent 3f7e98c277
commit 4d9053a83b

View File

@@ -118,7 +118,7 @@ pub const URL = struct {
return base; return base;
} }
// Quick hack becauste domains have to be at least 3 characters. // Quick hack because domains have to be at least 3 characters.
// Given https://a.b this will point to 'a' // Given https://a.b this will point to 'a'
// Given http://a.b this will point '.' // Given http://a.b this will point '.'
// Either way, we just care about this value to find the start of the path // Either way, we just care about this value to find the start of the path