about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCamelid <37223377+camelid@users.noreply.github.com>2020-09-01 19:44:20 -0700
committerGitHub <noreply@github.com>2020-09-01 19:44:20 -0700
commitce904783d0b030d9f8e2a683bfef488c2f830c75 (patch)
tree5761ff0509d44438927117d4ab69e2134fdf0607
parent54a4fd1eb9418e2ea8313e66cde525930cc191ae (diff)
downloadrust-ce904783d0b030d9f8e2a683bfef488c2f830c75.tar.gz
rust-ce904783d0b030d9f8e2a683bfef488c2f830c75.zip
Improve wording for const pointers
-rw-r--r--library/std/src/keyword_docs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/keyword_docs.rs b/library/std/src/keyword_docs.rs
index d15b5ba0b15..54ce0e7b831 100644
--- a/library/std/src/keyword_docs.rs
+++ b/library/std/src/keyword_docs.rs
@@ -146,7 +146,7 @@ mod break_keyword {}
 /// Constants, like statics, should always be in `SCREAMING_SNAKE_CASE`.
 ///
 /// The `const` keyword is also used in raw pointers in combination with `mut`, as seen in `*const
-/// T` and `*mut T`. More about that usage can be read at the Rust docs for the [pointer primitive].
+/// T` and `*mut T`. More about `const` as used in raw pointers can be read at the Rust docs for the [pointer primitive].
 ///
 /// For more detail on `const`, see the [Rust Book] or the [Reference].
 ///