From 5ddfa2de10fb6e7439619f11a29c22c6b9486ca9 Mon Sep 17 00:00:00 2001 From: Song Kun Date: Wed, 21 Nov 2018 08:44:09 +0800 Subject: [PATCH] fix typo in Chain's doc --- docs/src/main/tut/datatypes/chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/tut/datatypes/chain.md b/docs/src/main/tut/datatypes/chain.md index 09137fb69b..735d8986fc 100644 --- a/docs/src/main/tut/datatypes/chain.md +++ b/docs/src/main/tut/datatypes/chain.md @@ -23,7 +23,7 @@ This is because, with `List`, appending a single element requires iterating over So `List` isn't all that great for this use case, so let's use `Vector` or `NonEmptyVector` instead, right? -Well, `Vector` has its own problems and in this case it's unfortunately not that much faster than `List` at all. You can check [this blog post](http://www.lihaoyi.com/post/BenchmarkingScalaCollections.html#vectors-are-ok) by Li Haoyi for some deeper insight into `Vector`s issues. +Well, `Vector` has its own problems and in this case it's unfortunately not that much faster than `List` at all. You can check [this blog post](http://www.lihaoyi.com/post/BenchmarkingScalaCollections.html#vectors-are-ok) by Li Haoyi for some deeper insight into `Vector`'s issues. `Chain` evolved from what used to be `fs2.Catenable` and Erik Osheim's [Chain](https://github.com/non/chain ) library.