Skip to content

Commit

Permalink
Rename NonEmptyVec::inner into into_inner.
Browse files Browse the repository at this point in the history
  • Loading branch information
timothee-haudebourg committed Jul 8, 2024
1 parent 61e6cbd commit b1840a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/claims/crates/vc/src/syntax/non_empty_vec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl<T> NonEmptyVec<T> {
self.0.push(t)
}

pub fn inner(self) -> Vec<T> {
pub fn into_inner(self) -> Vec<T> {
self.0
}
}
Expand Down

0 comments on commit b1840a1

Please sign in to comment.