Skip to content

Commit 91f4063

Browse files
committed
add spaces to second struct def
1 parent e06e45a commit 91f4063

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

clippy_lints/src/suspicious_operation_groupings.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ declare_clippy_lint! {
4444
/// ```
4545
/// Use instead:
4646
/// ```rust
47-
/// #struct Vec3 {
48-
/// # x: f64,
49-
/// # y: f64,
50-
/// # z: f64,
51-
/// #}
47+
/// # struct Vec3 {
48+
/// # x: f64,
49+
/// # y: f64,
50+
/// # z: f64,
51+
/// # }
5252
/// // same as above except:
5353
/// impl PartialEq for Vec3 {
5454
/// fn eq(&self, other: &Self) -> bool {

0 commit comments

Comments
 (0)