From 76ca5da9fc2e813f06be530b4889c0353d1646fa Mon Sep 17 00:00:00 2001 From: SimonVandeVyver Date: Thu, 12 Sep 2024 16:33:48 +0200 Subject: [PATCH] fix to long doc comment --- bitarray/src/lib.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/bitarray/src/lib.rs b/bitarray/src/lib.rs index 78b6c60..06235d1 100644 --- a/bitarray/src/lib.rs +++ b/bitarray/src/lib.rs @@ -149,9 +149,8 @@ impl BitArray { } } -/// Writes the data to a writer in a binary format using a bit array. This function is helpfull -/// when writing large amounts of data to a writer in chunks. The data is written in chunks of the -/// specified capacity, so memory usage is minimized. +/// Writes the data to a writer in a binary format using a bit array. The data is written +/// in chunks of the specified capacity, so memory usage is minimized. /// /// # Arguments ///