change other uses of const to raw pointers

This commit is contained in:
Cheese_space
2026-05-17 22:52:56 +02:00
committed by GitHub
parent ba0949ab74
commit 76955f4f2d
+1 -1
View File
@@ -238,7 +238,7 @@ mod break_keyword {}
///
/// Turning a `fn` into a `const fn` has no effect on run-time uses of that function.
///
/// ## Other uses of `const`
/// ## raw pointers
///
/// The `const` keyword is also used in raw pointers in combination with `mut`, as seen in `*const
/// T` and `*mut T`. More about `const` as used in raw pointers can be read at the Rust docs for the [pointer primitive].