about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-06-09 16:49:24 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-06-09 16:49:24 -0400
commit2c75256c151774407e5f4a0e4c655604d34bee17 (patch)
tree0729a88c2a2fd6edefa1005b7a1028126fc6fdb0 /src/libstd/sys
parent7b0f2af27f18b6c81fe6a2faab0ba96e0da3bba5 (diff)
downloadrust-2c75256c151774407e5f4a0e4c655604d34bee17.tar.gz
rust-2c75256c151774407e5f4a0e4c655604d34bee17.zip
Exise 'unsafe pointer' in favor of 'raw pointer'
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.rs2
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
 ///