Skip to content

Commit 81a5161

Browse files
committed
fix: Typo in application log message
1 parent 18f7c4e commit 81a5161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pub mod error;
2929
#[inline]
3030
fn null_error_check<T>(pointer: *const T) -> Result<(), crate::error::PointerError> {
3131
if pointer.is_null() {
32-
log::error!("Using a NULL pointer as a opaque pointer to Rust data");
32+
log::error!("Using a NULL pointer as an opaque pointer to Rust's data");
3333
return Err(crate::error::PointerError::NulPointer);
3434
}
3535
return Ok(());

0 commit comments

Comments
 (0)