From 2284ad097d651d2a5260da741d40845b963b2545 Mon Sep 17 00:00:00 2001 From: Matt Gathu Date: Sun, 24 Dec 2023 05:44:39 +0100 Subject: [PATCH] Fix typo in Response documentation What -- Fix misspelled `parts` in the Response new function documentation. --- src/response.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/response.rs b/src/response.rs index 8112e08f..c2ba6222 100644 --- a/src/response.rs +++ b/src/response.rs @@ -237,7 +237,7 @@ impl Response<()> { impl Response { /// Creates a new blank `Response` with the body /// - /// The component ports of this response will be set to their default, e.g. + /// The component parts of this response will be set to their default, e.g. /// the ok status, no headers, etc. /// /// # Examples