We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18f7c4e commit 81a5161Copy full SHA for 81a5161
src/lib.rs
@@ -29,7 +29,7 @@ pub mod error;
29
#[inline]
30
fn null_error_check<T>(pointer: *const T) -> Result<(), crate::error::PointerError> {
31
if pointer.is_null() {
32
- log::error!("Using a NULL pointer as a opaque pointer to Rust data");
+ log::error!("Using a NULL pointer as an opaque pointer to Rust's data");
33
return Err(crate::error::PointerError::NulPointer);
34
}
35
return Ok(());
0 commit comments