Fix some typos

This commit is contained in:
Bastien Orivel 2017-08-11 20:34:14 +02:00
parent 59f6b8338e
commit 3ab86fbab2
53 changed files with 83 additions and 82 deletions

View file

@ -906,7 +906,7 @@ mod prim_ref { }
/// These markers can be combined, so `unsafe extern "stdcall" fn()` is a valid type.
///
/// Like references in rust, function pointers are assumed to not be null, so if you want to pass a
/// function pointer over FFI and be able to accomodate null pointers, make your type
/// function pointer over FFI and be able to accommodate null pointers, make your type
/// `Option<fn()>` with your required signature.
///
/// Function pointers implement the following traits: