diff options
| author | John Arundel <john@bitfieldconsulting.com> | 2024-07-07 10:49:26 +0100 |
|---|---|---|
| committer | John Arundel <john@bitfieldconsulting.com> | 2024-07-07 10:49:26 +0100 |
| commit | 5a9e5e4acf537bca80dc505c48148c952b85a264 (patch) | |
| tree | 0711909c23eae00c9fc3a04c6ab900a517d63d0d | |
| parent | f7050b0c784559a0eacbbfac9f7be95cb81dba66 (diff) | |
| download | rust-5a9e5e4acf537bca80dc505c48148c952b85a264.tar.gz rust-5a9e5e4acf537bca80dc505c48148c952b85a264.zip | |
resolve code review comments
| -rw-r--r-- | clippy_lints/src/casts/mod.rs | 2 |
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, |
