Fix typo in typed_header.rs (#2133)

This commit is contained in:
Ikko Eltociear Ashimine 2023-08-01 00:27:20 +09:00 committed by GitHub
parent e5b0852bdb
commit 025144be7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,7 +132,7 @@ impl TypedHeaderRejection {
pub enum TypedHeaderRejectionReason {
/// The header was missing from the HTTP request
Missing,
/// An error occured when parsing the header from the HTTP request
/// An error occurred when parsing the header from the HTTP request
Error(headers::Error),
}