Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Feb 23, 2024
1 parent c3e527f commit 83c8f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/traits/cell.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub trait ReferenceCell {
/// The vertices of the cell
///
/// The first dim components represent the first vertex, the next dim the second vertex, and so on.
fn vertices<'a>(&'a self) -> std::slice::Iter<'a, usize>;
fn vertices(&self) -> std::slice::Iter<'_, usize>;

/// Ths midpoint of the cell
fn midpoint(&self, midpoint: &mut [Self::T]);
Expand Down

0 comments on commit 83c8f29

Please sign in to comment.