From 264454a08b6433910297fa3770d01e85d6d58426 Mon Sep 17 00:00:00 2001 From: Ryan Mehri Date: Fri, 12 Jun 2020 13:01:03 -0600 Subject: [PATCH] Move questions below introductory paragraph --- docs/src/main/tut/nomenclature.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/src/main/tut/nomenclature.md b/docs/src/main/tut/nomenclature.md index 4c56d886c3..11afab597c 100644 --- a/docs/src/main/tut/nomenclature.md +++ b/docs/src/main/tut/nomenclature.md @@ -5,12 +5,11 @@ section: "Glossary" position: 60 --- -> - What is the difference between `unit` and `void`? -> - To discard the first value and keep only the first effect, is it `<*` or `*>`? -> - How do I make a computation `F[A]` fail by checking a condition on the value? +This is a catalogue of the major functions, type classes, and data types in `Cats`. It serves as a bird's-eye view of each class capabilities. It is also intended as a go-to reference for `Cats` users, who may not recall the answer to questions like these: - -This is a catalogue of the major functions, type classes, and data types in `Cats`. It serves as a bird's-eye view of each class capabilities. It is also intended as a go-to reference for `Cats` users, who may not recall the answer to questions like the ones above. +- What is the difference between `unit` and `void`? +- To discard the first value and keep only the first effect, is it `<*` or `*>`? +- How do I make a computation `F[A]` fail by checking a condition on the value? The signatures and type-classes have been simplified, are described [below](#simplifications). If you want a printable version, you can also check out this [cats-cheatsheet](https://arosien.github.io/cats-cheatsheets/typeclasses.pdf).