diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 0000000..a25c117 --- /dev/null +++ b/_typos.toml @@ -0,0 +1,2 @@ +[files] +extend-exclude = ["examples/image/*"] \ No newline at end of file diff --git a/src/indexable/dataloader/builder.rs b/src/indexable/dataloader/builder.rs index 4fa9d51..0b46bd7 100644 --- a/src/indexable/dataloader/builder.rs +++ b/src/indexable/dataloader/builder.rs @@ -11,7 +11,7 @@ use super::DataLoader; /// Basic builder for creating dataloader from a type that implement `IntoIterator`. /// add a dataloader for all type that implement `IntoIterator`. -/// If the iterator `Item` is not supported by default collate, you must provid your own collate function +/// If the iterator `Item` is not supported by default collate, you must provide your own collate function #[must_use] #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Hash, Ord)] pub struct Builder