This commit is contained in:
Oli Scherer 2022-11-22 13:55:37 +00:00
parent b05c790fd6
commit 2b2170384d

View File

@ -1031,7 +1031,7 @@ declare_lint! {
/// let y = x.as_ptr() as *const u32;
/// *y; // the address of a `u8` array is unknown and thus we don't know if
/// // it is aligned enough for reading a `u32`.
/// }
/// };
/// ```
///
/// {{produces}}