From 59cbfb3da475413976c491c7da106e614205b3c4 Mon Sep 17 00:00:00 2001 From: zignis Date: Tue, 14 May 2024 12:19:14 +0530 Subject: [PATCH] fix typo --- Cargo.toml | 2 +- src/intersect.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 090b06c..1ebb913 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rodash" -version = "0.1.0" +version = "0.1.1" edition = "2021" authors = ["zignis "] license = "MIT" diff --git a/src/intersect.rs b/src/intersect.rs index d2fbf0d..ce333e0 100644 --- a/src/intersect.rs +++ b/src/intersect.rs @@ -29,7 +29,7 @@ where .collect::>() } -/// A trait that implements the [Intersect::Intersect] method on arrays. +/// A trait that implements the [Intersect::intersect] method on arrays. pub trait Intersect where A: IntoIterator,