From 4d78ffd3c3c1d323c9e94e4c98e5fca091971456 Mon Sep 17 00:00:00 2001 From: follower Date: Thu, 11 Feb 2021 00:06:10 +1300 Subject: [PATCH] Typo: Fix missing space between words. (#217) --- idioms/ffi-passing-strings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idioms/ffi-passing-strings.md b/idioms/ffi-passing-strings.md index e745772..18de5c8 100644 --- a/idioms/ffi-passing-strings.md +++ b/idioms/ffi-passing-strings.md @@ -42,7 +42,7 @@ pub mod unsafe_module { unsafe { // SAFETY: calling an FFI whose documentation says the pointer is - // const, so no modificationshould occur + // const, so no modification should occur seterr(c_err.as_ptr()); }