Skip to content

Commit

Permalink
Consistent spelling of "adaptor" in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
rossmacarthur committed Dec 2, 2023
1 parent bc3fb83 commit 984718b
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion crates/chunks/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.5.0"
authors = ["Ross MacArthur <ross@macarthur.io>"]
edition = "2021"
rust-version = "1.56"
description = "An iterator adapter to adapter that yields N elements of the iterator at a time"
description = "An iterator adaptor to adaptor that yields N elements of the iterator at a time"
readme = "README.md"
repository = "https://github.com/rossmacarthur/itermore"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/chunks/README.md
Expand Up @@ -6,7 +6,7 @@
[![Docs.rs Latest](https://badgers.space/badge/docs.rs/latest/blue)](https://docs.rs/iterchunks)
[![Build Status](https://badgers.space/github/checks/rossmacarthur/itermore?label=build)](https://github.com/rossmacarthur/itermore/actions/workflows/build.yaml)

This crate provides an iterator adapter that yields N elements of the
This crate provides an iterator adaptor that yields N elements of the
iterator at a time.

### Deprecated
Expand Down
2 changes: 1 addition & 1 deletion crates/chunks/src/lib.rs
@@ -1,4 +1,4 @@
//! This crate provides an iterator adapter that yields N elements of the
//! This crate provides an iterator adaptor that yields N elements of the
//! iterator at a time.
//!
//! ## Deprecated
Expand Down
2 changes: 1 addition & 1 deletion crates/windows/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ version = "0.5.0"
authors = ["Ross MacArthur <ross@macarthur.io>"]
edition = "2021"
rust-version = "1.56"
description = "An iterator adapter to iterate over all contiguous windows of length N"
description = "An iterator adaptor to iterate over all contiguous windows of length N"
readme = "README.md"
repository = "https://github.com/rossmacarthur/itermore"
license = "MIT OR Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/windows/README.md
Expand Up @@ -6,7 +6,7 @@
[![Docs.rs Latest](https://badgers.space/badge/docs.rs/latest/blue)](https://docs.rs/iterwindows)
[![Build Status](https://badgers.space/github/checks/rossmacarthur/itermore?label=build)](https://github.com/rossmacarthur/itermore/actions/workflows/build.yaml)

This crate provides an iterator adapter to iterate over all contiguous
This crate provides an iterator adaptor to iterate over all contiguous
windows of length `N`.

### Deprecated
Expand Down
2 changes: 1 addition & 1 deletion crates/windows/src/lib.rs
@@ -1,4 +1,4 @@
//! This crate provides an iterator adapter to iterate over all contiguous
//! This crate provides an iterator adaptor to iterate over all contiguous
//! windows of length `N`.
//!
//! ## Deprecated
Expand Down
2 changes: 1 addition & 1 deletion src/adaptors/array_windows.rs
Expand Up @@ -8,7 +8,7 @@ pub trait IterArrayWindows: Iterator {
/// The windows overlap. If the iterator is shorter than `N`, the iterator
/// returns no values.
///
/// This adapter clones the iterator elements so that they can be part of
/// This adaptor clones the iterator elements so that they can be part of
/// successive windows, this makes this it most suited for iterators of
/// references and other values that are cheap to clone or copy.
///
Expand Down
2 changes: 1 addition & 1 deletion src/adaptors/circular_array_windows.rs
Expand Up @@ -8,7 +8,7 @@ pub trait IterCircularArrayWindows: Iterator {
/// back to the first elements when the window would otherwise exceed the
/// length of the iterator.
///
/// This adapter clones the iterator elements so that they can be part of
/// This adaptor clones the iterator elements so that they can be part of
/// successive windows, this makes this it most suited for iterators of
/// references and other values that are cheap to clone or copy.
///
Expand Down

0 comments on commit 984718b

Please sign in to comment.