diff options
| -rw-r--r-- | src/doc/guide-unsafe.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/guide-unsafe.md b/src/doc/guide-unsafe.md index 8349c8ebcb6..34cec8d980a 100644 --- a/src/doc/guide-unsafe.md +++ b/src/doc/guide-unsafe.md @@ -137,7 +137,7 @@ explicitly with, respectively, `value as *const T` and `value as *mut T`). Going the opposite direction, from `*const` to a reference `&`, is not safe. A `&T` is always valid, and so, at a minimum, the raw pointer -`*const T` has to be a valid to a valid instance of type `T`. Furthermore, +`*const T` has to be a pointer to a valid instance of type `T`. Furthermore, the resulting pointer must satisfy the aliasing and mutability laws of references. The compiler assumes these properties are true for any references, no matter how they are created, and so any conversion from |
