Rollup merge of #26146 - steveklabnik:remove_unsafe_pointer, r=Gankro

Using two terms for one thing is confusing, these are called 'raw pointers' today.
This commit is contained in:
Manish Goregaokar
2015-06-10 22:07:10 +05:30
22 changed files with 33 additions and 33 deletions

View File

@@ -102,7 +102,7 @@ pub struct StaticKey {
/// type is entirely safe to use.
///
/// Implementations will likely, however, contain unsafe code as this type only
/// operates on `*mut u8`, an unsafe pointer.
/// operates on `*mut u8`, a raw pointer.
///
/// # Examples
///