From 71fb8a68c2f97fef1aa82038ec84655d818ad301 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Thu, 30 Jan 2020 08:32:20 -0500 Subject: [PATCH] Fix nit Co-Authored-By: Yuki Okushi --- actix-http/src/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actix-http/src/error.rs b/actix-http/src/error.rs index 211714f23..b6637075c 100644 --- a/actix-http/src/error.rs +++ b/actix-http/src/error.rs @@ -92,7 +92,7 @@ pub trait ResponseError: fmt::Debug + fmt::Display { /// A helper method to get the type ID of the type /// this trait is implemented on. /// This method is unsafe to *implement*, since `downcast_ref` relies - /// on the returned `TypeId` to perform an cast. + /// on the returned `TypeId` to perform a cast. /// /// Unfortunately, Rust has no notion of a trait method that is /// unsafe to implement (marking it as `unsafe` makes it unsafe