From d205b1f83ff92e5ddd0c12f31aa07df058753578 Mon Sep 17 00:00:00 2001 From: Kian-Meng Ang Date: Wed, 11 Feb 2026 00:31:01 +0800 Subject: [PATCH] Fix typos Found via `codespell -L clen,ans,wordl,unio` and `typos --hidden --format brief` --- Changelog.md | 2 +- Data/ByteString.hs | 2 +- Data/ByteString/Builder.hs | 4 ++-- Data/ByteString/Builder/Internal.hs | 8 ++++---- Data/ByteString/Builder/Prim.hs | 2 +- Data/ByteString/Internal/Pure.hs | 2 +- Data/ByteString/Internal/Type.hs | 14 +++++++------- Data/ByteString/Lazy.hs | 4 ++-- Data/ByteString/Lazy/Char8.hs | 4 ++-- Data/ByteString/Lazy/ReadInt.hs | 2 +- Data/ByteString/Short/Internal.hs | 14 +++++++------- tests/builder/Data/ByteString/Builder/Tests.hs | 2 +- 12 files changed, 30 insertions(+), 30 deletions(-) diff --git a/Changelog.md b/Changelog.md index 26ef770e3..968d38709 100644 --- a/Changelog.md +++ b/Changelog.md @@ -168,7 +168,7 @@ * Performance improvements: * [Many functions returning `StrictByteString` can now return their results unboxed](https://github.com/haskell/bytestring/pull/580) * [Dead branches removed from `Lazy.toStrict`](https://github.com/haskell/bytestring/pull/590) - * [`Builder.toLazyByteString` re-uses under-filled buffers after copying their contents](https://github.com/haskell/bytestring/pull/581) + * [`Builder.toLazyByteString` reuses under-filled buffers after copying their contents](https://github.com/haskell/bytestring/pull/581) * Miscellaneous: * [Minor benchmarking improvements](https://github.com/haskell/bytestring/pull/577)