From 2feab369f42039b41392314fb16d3644dee20930 Mon Sep 17 00:00:00 2001 From: lif <> Date: Fri, 20 Feb 2026 07:11:58 +0000 Subject: [PATCH] fix apparent typo --- dropshot/src/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dropshot/src/handler.rs b/dropshot/src/handler.rs index 539d912e..aefbeaba 100644 --- a/dropshot/src/handler.rs +++ b/dropshot/src/handler.rs @@ -527,7 +527,7 @@ where /// // Alternatively, an `ErrorStatusCode` can be constructed /// // from a `u16`, but the `ErrorStatusCode::from_u16` /// // constructor validates that the status code is a 4xx -// // or 5xx. +/// // or 5xx. /// // /// // This allows using extended status codes, while still /// // ensuring that they are errors.