about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJohn Arundel <john@bitfieldconsulting.com>2024-07-07 10:49:26 +0100
committerJohn Arundel <john@bitfieldconsulting.com>2024-07-07 10:49:26 +0100
commit5a9e5e4acf537bca80dc505c48148c952b85a264 (patch)
tree0711909c23eae00c9fc3a04c6ab900a517d63d0d
parentf7050b0c784559a0eacbbfac9f7be95cb81dba66 (diff)
downloadrust-5a9e5e4acf537bca80dc505c48148c952b85a264.tar.gz
rust-5a9e5e4acf537bca80dc505c48148c952b85a264.zip
resolve code review comments
-rw-r--r--clippy_lints/src/casts/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/clippy_lints/src/casts/mod.rs b/clippy_lints/src/casts/mod.rs
index 7eaa802ecc2..14f9f991d3b 100644
--- a/clippy_lints/src/casts/mod.rs
+++ b/clippy_lints/src/casts/mod.rs
@@ -374,7 +374,7 @@ declare_clippy_lint! {
 declare_clippy_lint! {
     /// ### What it does
     /// Checks for `as` casts between raw pointers that don't change their
-    /// mutability, namely `*const T` to `*const U` and `*mut T` to `*mut U`.
+    /// constness, namely `*const T` to `*const U` and `*mut T` to `*mut U`.
     ///
     /// ### Why is this bad?
     /// Though `as` casts between raw pointers are not terrible,