Skip to content

Commit

Permalink
Merge pull request #2630 from satansk/fix-chain-typo
Browse files Browse the repository at this point in the history
Fix a typo in Chain's doc
  • Loading branch information
ceedubs authored Dec 3, 2018
2 parents ccfbc22 + 5ddfa2d commit 4d3cbbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/main/tut/datatypes/chain.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 4d3cbbd

Please sign in to comment.