Skip to content

Commit

Permalink
fix whitespace errors in doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
folkertdev committed Jul 31, 2024
1 parent 6de7b5e commit d6308b1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libz-rs-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d6308b1

Please sign in to comment.