Skip to content

Commit

Permalink
add spaces to second struct def
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan1729 committed Oct 31, 2020
1 parent 0ae1447 commit 4bcb20b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions clippy_lints/src/suspicious_operation_groupings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4bcb20b

Please sign in to comment.