From fb80b07574c90c68d9d4b0cca5e930faf29f4d36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lu=C3=ADs=20Campos?= Date: Mon, 27 Jan 2020 09:30:36 +0000 Subject: [PATCH] fix typo --- docs/src/main/tut/datatypes/chain.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/src/main/tut/datatypes/chain.md b/docs/src/main/tut/datatypes/chain.md index f971ec6a77..8be0b88275 100644 --- a/docs/src/main/tut/datatypes/chain.md +++ b/docs/src/main/tut/datatypes/chain.md @@ -67,8 +67,7 @@ You can also check out the benchmarks [here](https://github.com/typelevel/cats/b `Chain` is a fairly simple data structure compared to something like `Vector`. It's a simple ADT that has only 4 cases. -It is either an empty `Chain` with no elements, a singleton `Chain` with exactly one element, a concatenation of two chains or a wrapper for another collect -ion. +It is either an empty `Chain` with no elements, a singleton `Chain` with exactly one element, a concatenation of two chains or a wrapper for another collection. In code it looks like this: ```tut:book