File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -125,13 +125,13 @@ pub unsafe extern "C" fn adler32_combine(
125
125
/// Behavior is undefined if any of the following conditions are violated:
126
126
///
127
127
/// - `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!
129
129
/// - `source` must point to `sourceLen` consecutive properly initialized values of type `u8`.
130
130
/// - `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!
132
132
/// - `dest` must point to `*destLen` consecutive properly initialized values of type `u8`.
133
133
/// - while this function runs, both read and write actions to the `source` and `dest` memory
134
- /// ranges are forbidden
134
+ /// ranges are forbidden
135
135
#[ export_name = prefix ! ( uncompress) ]
136
136
pub unsafe extern "C" fn uncompress (
137
137
dest : * mut u8 ,
You can’t perform that action at this time.
0 commit comments