Auto merge of #13089 - flba-eb:fix_example, r=y21
Fix syntax errors in example code (clippy::cast_nan_to_int) Fix two small syntax errors to make the examples compile. changelog: none
This commit is contained in:
commit
51a1cf0787
@ -658,11 +658,11 @@ declare_clippy_lint! {
|
|||||||
///
|
///
|
||||||
/// ### Example
|
/// ### Example
|
||||||
/// ```rust,ignore
|
/// ```rust,ignore
|
||||||
/// let _: (0.0_f32 / 0.0) as u64;
|
/// let _ = (0.0_f32 / 0.0) as u64;
|
||||||
/// ```
|
/// ```
|
||||||
/// Use instead:
|
/// Use instead:
|
||||||
/// ```rust,ignore
|
/// ```rust,ignore
|
||||||
/// let _: = 0_u64;
|
/// let _ = 0_u64;
|
||||||
/// ```
|
/// ```
|
||||||
#[clippy::version = "1.66.0"]
|
#[clippy::version = "1.66.0"]
|
||||||
pub CAST_NAN_TO_INT,
|
pub CAST_NAN_TO_INT,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user