From a320ece3e5acd1413db58adbbc29c492a65cc21d Mon Sep 17 00:00:00 2001 From: David Sanders Date: Wed, 6 Mar 2019 09:01:03 -0800 Subject: [PATCH] Fixed a misspelling in the doc comments for join. --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index fa09d1028..517d3bac1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1449,7 +1449,7 @@ pub trait Itertools : Iterator { count } - /// Combine all iterator elements into one String, seperated by `sep`. + /// Combine all iterator elements into one String, separated by `sep`. /// /// Use the `Display` implementation of each element. ///