From 8d795dba74c6aab93e4a608134cf4a01c55b35de Mon Sep 17 00:00:00 2001 From: James Munns Date: Mon, 5 Nov 2018 01:54:09 +0100 Subject: [PATCH] fix typo Co-Authored-By: japaric --- src/interoperability/interoperability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interoperability/interoperability.md b/src/interoperability/interoperability.md index b85f59e..166f040 100644 --- a/src/interoperability/interoperability.md +++ b/src/interoperability/interoperability.md @@ -16,7 +16,7 @@ is similar enough or the same. types such as Strings, mapping both `&str` and `String` to C-types that are easier and safer to handle. -Neither of these modules in available in `core`, but you can find a `#![no_std]` +Neither of these modules are available in `core`, but you can find a `#![no_std]` compatible version of `std::ffi::{CStr,CString}` in the [`cstr_core`] crate, and most of the `std::os::raw` types in the [`cty`] crate.