Fix typos

This commit is contained in:
Yuki Okushi 2019-06-13 00:37:30 +09:00
parent 05083c2dee
commit b8f1491f6e
2 changed files with 2 additions and 2 deletions

View file

@ -1883,7 +1883,7 @@ This pattern should be rewritten. There are a few possible ways to do this:
# } # }
``` ```
The same applies to transmutes to `*mut fn()`, which were observedin practice. The same applies to transmutes to `*mut fn()`, which were observed in practice.
Note though that use of this type is generally incorrect. Note though that use of this type is generally incorrect.
The intention is typically to describe a function pointer, but just `fn()` The intention is typically to describe a function pointer, but just `fn()`
alone suffices for that. `*mut fn()` is a pointer to a fn pointer. alone suffices for that. `*mut fn()` is a pointer to a fn pointer.

View file

@ -53,7 +53,7 @@ This pattern should be rewritten. There are a few possible ways to do this:
let f: extern "C" fn(*mut i32) = transmute(foo as usize); // works too let f: extern "C" fn(*mut i32) = transmute(foo as usize); // works too
``` ```
The same applies to transmutes to `*mut fn()`, which were observedin practice. The same applies to transmutes to `*mut fn()`, which were observed in practice.
Note though that use of this type is generally incorrect. Note though that use of this type is generally incorrect.
The intention is typically to describe a function pointer, but just `fn()` The intention is typically to describe a function pointer, but just `fn()`
alone suffices for that. `*mut fn()` is a pointer to a fn pointer. alone suffices for that. `*mut fn()` is a pointer to a fn pointer.