Skip to content

Commit

Permalink
chore: CI fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Mar 23, 2024
1 parent c439d1d commit 6f79023
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shape/triangle.rs
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ impl Triangle {

/// Reverse the orientation of this triangle by swapping b and c.
pub fn reverse(&mut self) {
std::mem::swap(&mut self.b, &mut self.c);
mem::swap(&mut self.b, &mut self.c);
}
}

Expand Down

0 comments on commit 6f79023

Please sign in to comment.