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 //! //!