Skip to content

Commit d6308b1

Browse files
committed
fix whitespace errors in doc comment
1 parent 6de7b5e commit d6308b1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libz-rs-sys/src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,13 +125,13 @@ pub unsafe extern "C" fn adler32_combine(
125125
/// Behavior is undefined if any of the following conditions are violated:
126126
///
127127
/// - `source` must be [valid](https://doc.rust-lang.org/std/ptr/index.html#safety) for reads for
128-
/// `sourceLen` bytes. The entity of `source` must be contained in one allocated object!
128+
/// `sourceLen` bytes. The entity of `source` must be contained in one allocated object!
129129
/// - `source` must point to `sourceLen` consecutive properly initialized values of type `u8`.
130130
/// - `dest` must be [valid](https://doc.rust-lang.org/std/ptr/index.html#safety) for reads for
131-
/// `*destLen` bytes. The entity of `source` must be contained in one allocated object!
131+
/// `*destLen` bytes. The entity of `source` must be contained in one allocated object!
132132
/// - `dest` must point to `*destLen` consecutive properly initialized values of type `u8`.
133133
/// - while this function runs, both read and write actions to the `source` and `dest` memory
134-
/// ranges are forbidden
134+
/// ranges are forbidden
135135
#[export_name = prefix!(uncompress)]
136136
pub unsafe extern "C" fn uncompress(
137137
dest: *mut u8,

0 commit comments

Comments
 (0)