Rollup merge of #125659 - tbu-:pr_rm_isize, r=pnkfelix
Remove usage of `isize` in example `isize` is a rare integer type, replace it with a more common one.
This commit is contained in:
commit
ecc0046fb6
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ declare_lint! {
|
||||||
/// ```rust,compile_fail
|
/// ```rust,compile_fail
|
||||||
/// #![deny(box_pointers)]
|
/// #![deny(box_pointers)]
|
||||||
/// struct Foo {
|
/// struct Foo {
|
||||||
/// x: Box<isize>,
|
/// x: Box<i32>,
|
||||||
/// }
|
/// }
|
||||||
/// ```
|
/// ```
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue