Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Ockajak committed Jul 12, 2024
1 parent 65bdbdb commit ee8d4bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/extensions/collectible.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ pub trait Collectible<Item>: IntoIterator<Item = Item> {
/// ```
/// use cantrip::*;
///
/// let a = vec![1, 2, 3, 3];
/// let a = vec![1, 2, 2, 3];
/// let e: Vec<i32> = Vec::new();
///
/// assert_eq!(a.delete_all(&vec![1, 3]), vec![2, 3]);
/// assert_eq!(a.delete_all(&vec![1, 2]), vec![2, 3]);
///
/// assert_eq!(e.delete_all(&vec![1]), vec![]);
/// ```
Expand Down

0 comments on commit ee8d4bc

Please sign in to comment.