From 33a3f4939f405e0d3923889eff31e2114372d8b3 Mon Sep 17 00:00:00 2001 From: Martin Ockajak Date: Mon, 29 Jul 2024 14:49:43 +0200 Subject: [PATCH] Update documentation --- README.md | 2 +- src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b1298db..4753575 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ Enables direct functional-style collection manipulation without the usual iterat - Equivalents of standard iterator methods are added to standard library collections - Additional utility methods commonly found in collection libraries are also included -- Methods which modify a collection return a new collection instance instead of an iterator - All methods treat collection instances as immutable although some may consume them +- Methods which modify a collection return a new collection instead of an iterator - Performance is near optimal and overhead is limited to new collection creation diff --git a/src/lib.rs b/src/lib.rs index ffcd484..c90d389 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,8 +9,8 @@ //! //! - Equivalents of standard iterator methods are added to standard library collections //! - Additional utility methods commonly found in collection libraries are also included -//! - Methods which modify a collection return a new collection instance instead of an iterator //! - All methods treat collection instances as immutable although some may consume them +//! - Methods which modify a collection return a new collection instead of an iterator //! - Performance is near optimal and overhead is limited to new collection creation //! //!