| ... | ... | @@ -5,7 +5,7 @@ const std = @import("../std.zig"); |
| 5 | 5 | |
| 6 | 6 | pub const Status = enum(u10) { |
| 7 | 7 | @"continue" = 100, // RFC7231, Section 6.2.1 |
| 8 | | switching_protcols = 101, // RFC7231, Section 6.2.2 |
| 8 | switching_protocols = 101, // RFC7231, Section 6.2.2 |
| 9 | 9 | processing = 102, // RFC2518 |
| 10 | 10 | early_hints = 103, // RFC8297 |
| 11 | 11 | |
| ... | ... | @@ -77,7 +77,7 @@ pub const Status = enum(u10) { |
| 77 | 77 | return switch (self) { |
| 78 | 78 | // 1xx statuses |
| 79 | 79 | .@"continue" => "Continue", |
| 80 | | .switching_protcols => "Switching Protocols", |
| 80 | .switching_protocols => "Switching Protocols", |
| 81 | 81 | .processing => "Processing", |
| 82 | 82 | .early_hints => "Early Hints", |
| 83 | 83 | |