From f3b363a385c609f3bfb1161b8028ed84034a6020 Mon Sep 17 00:00:00 2001 From: Dax Huiberts Date: Mon, 28 Jan 2019 19:06:28 +0100 Subject: [PATCH] Fix typo in bytes.rs (#243) --- src/bytes.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bytes.rs b/src/bytes.rs index fb58a77..cb1aae4 100644 --- a/src/bytes.rs +++ b/src/bytes.rs @@ -273,7 +273,7 @@ pub struct BytesMut { // The rest of `arc`'s bytes are used as part of the inline buffer, which means // that those bytes need to be located next to the `ptr`, `len`, and `cap` // fields, which make up the rest of the inline buffer. This requires special -// casing the layout of `Inner` depending on if the target platform is bit or +// casing the layout of `Inner` depending on if the target platform is big or // little endian. // // On little endian platforms, the `arc` field must be the first field in the