diff options
Diffstat (limited to 'src/url.zig')
-rw-r--r-- | src/url.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/url.zig b/src/url.zig index 9532edd92..11959636e 100644 --- a/src/url.zig +++ b/src/url.zig @@ -103,7 +103,7 @@ pub const URL = struct { pub const HostFormatter = struct { host: string, - port: string = "80", + port: string = "", is_https: bool = false, pub fn format(formatter: HostFormatter, comptime _: []const u8, _: std.fmt.FormatOptions, writer: anytype) !void { |