diff --git a/clippy_lints/src/suspicious_operation_groupings.rs b/clippy_lints/src/suspicious_operation_groupings.rs index b8322160c74a..89f1229f83cb 100644 --- a/clippy_lints/src/suspicious_operation_groupings.rs +++ b/clippy_lints/src/suspicious_operation_groupings.rs @@ -44,11 +44,11 @@ declare_clippy_lint! { /// ``` /// Use instead: /// ```rust - /// #struct Vec3 { - /// # x: f64, - /// # y: f64, - /// # z: f64, - /// #} + /// # struct Vec3 { + /// # x: f64, + /// # y: f64, + /// # z: f64, + /// # } /// // same as above except: /// impl PartialEq for Vec3 { /// fn eq(&self, other: &Self) -> bool {