From a3a7800c30521d07146329e37450dc767720a4e7 Mon Sep 17 00:00:00 2001 From: Steven Bosnick Date: Sat, 30 May 2020 14:44:32 -0400 Subject: [PATCH] Fix spelling error in one comment --- src/header/name.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/name.rs b/src/header/name.rs index c02a259f..533e389f 100644 --- a/src/header/name.rs +++ b/src/header/name.rs @@ -1359,7 +1359,7 @@ fn parse_hdr<'a>( // Precondition: The post-condition on to_lower!() ensures the first 15 // bytes of b are intitialized so, in particular the first 7 are. if eq!(b == b'a' b'c' b'c' b'e' b'p' b't' b'-') { // accept- - // Precondition: The first 15 bytes of 5 are intitialized so the + // Precondition: The first 15 bytes of b are intitialized so the // first 8 starting at b[7] are. if eq!(b[7] == b'e' b'n' b'c' b'o' b'd' b'i' b'n' b'g') { return Ok(AcceptEncoding.into())