diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-06-10 22:07:10 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-06-10 22:07:10 +0530 |
| commit | 7d9427e6cd798e24b4be633aa4bf459bd232400c (patch) | |
| tree | 55d99b6696147318e487ac6af8005865b89daaae /src/libstd/sys | |
| parent | ef089ff70daad26f848efbe89bf1a1d1c1e7226d (diff) | |
| parent | 2c75256c151774407e5f4a0e4c655604d34bee17 (diff) | |
| download | rust-7d9427e6cd798e24b4be633aa4bf459bd232400c.tar.gz rust-7d9427e6cd798e24b4be633aa4bf459bd232400c.zip | |
Rollup merge of #26146 - steveklabnik:remove_unsafe_pointer, r=Gankro
Using two terms for one thing is confusing, these are called 'raw pointers' today.
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/common/thread_local.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/common/thread_local.rs b/src/libstd/sys/common/thread_local.rs index eb4cbfcfbcd..3b2cb00d8c4 100644 --- a/src/libstd/sys/common/thread_local.rs +++ b/src/libstd/sys/common/thread_local.rs @@ -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 /// |
