From 11dce78944ecfab1838cd678f75c354aa376a8bf Mon Sep 17 00:00:00 2001 From: Ali Chraghi Date: Thu, 6 Oct 2022 19:59:53 +0330 Subject: std.http: fix typo --- lib/std/http/status.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/std/http/status.zig b/lib/std/http/status.zig index bf96b71c0a..91738e0533 100644 --- a/lib/std/http/status.zig +++ b/lib/std/http/status.zig @@ -5,7 +5,7 @@ const std = @import("../std.zig"); pub const Status = enum(u10) { @"continue" = 100, // RFC7231, Section 6.2.1 - switching_protcols = 101, // RFC7231, Section 6.2.2 + switching_protocols = 101, // RFC7231, Section 6.2.2 processing = 102, // RFC2518 early_hints = 103, // RFC8297 @@ -77,7 +77,7 @@ pub const Status = enum(u10) { return switch (self) { // 1xx statuses .@"continue" => "Continue", - .switching_protcols => "Switching Protocols", + .switching_protocols => "Switching Protocols", .processing => "Processing", .early_hints => "Early Hints", -- cgit v1.2.3