From d6308b1b013c24400fc040cb479e90aee6054580 Mon Sep 17 00:00:00 2001 From: Folkert Date: Wed, 31 Jul 2024 12:29:31 +0200 Subject: [PATCH] fix whitespace errors in doc comment --- libz-rs-sys/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libz-rs-sys/src/lib.rs b/libz-rs-sys/src/lib.rs index 9ac06578..4e205c48 100644 --- a/libz-rs-sys/src/lib.rs +++ b/libz-rs-sys/src/lib.rs @@ -125,13 +125,13 @@ pub unsafe extern "C" fn adler32_combine( /// Behavior is undefined if any of the following conditions are violated: /// /// - `source` must be [valid](https://doc.rust-lang.org/std/ptr/index.html#safety) for reads for -/// `sourceLen` bytes. The entity of `source` must be contained in one allocated object! +/// `sourceLen` bytes. The entity of `source` must be contained in one allocated object! /// - `source` must point to `sourceLen` consecutive properly initialized values of type `u8`. /// - `dest` must be [valid](https://doc.rust-lang.org/std/ptr/index.html#safety) for reads for -/// `*destLen` bytes. The entity of `source` must be contained in one allocated object! +/// `*destLen` bytes. The entity of `source` must be contained in one allocated object! /// - `dest` must point to `*destLen` consecutive properly initialized values of type `u8`. /// - while this function runs, both read and write actions to the `source` and `dest` memory -/// ranges are forbidden +/// ranges are forbidden #[export_name = prefix!(uncompress)] pub unsafe extern "C" fn uncompress( dest: *mut u8,