authorgravatar for 178735591+87flowers@users.noreply.github.com87flowers <178735591+87flowers@users.noreply.github.com> 2024-10-18 10:07:33+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2025-02-22 17:09:20-08:00
log8469a44c9cb5110f8db24c26f5f50ae91e35b3ce
treea37df8be096628439dd342ff5cb0edb6a8b1b673
parent87172ee4e609ca8298a48f4ae92f1c539368e12e

std/http/Client: Remove TODO comments on indentation


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

lib/std/http/Client.zig+2-2
......@@ -959,7 +959,7 @@ pub const Request = struct {
959959
960960 pub const WaitError = RequestError || SendError || TransferReadError ||
961961 proto.HeadersParser.CheckCompleteHeadError || Response.ParseError ||
962 error{ // TODO: file zig fmt issue for this bad indentation
962 error{
963963 TooManyHttpRedirects,
964964 RedirectRequiresResend,
965965 HttpRedirectLocationMissing,
......@@ -1539,7 +1539,7 @@ pub fn connect(
15391539
15401540pub const RequestError = ConnectTcpError || ConnectErrorPartial || Request.SendError ||
15411541 std.fmt.ParseIntError || Connection.WriteError ||
1542 error{ // TODO: file a zig fmt issue for this bad indentation
1542 error{
15431543 UnsupportedUriScheme,
15441544 UriMissingHost,
15451545