Skip to content

Commit

Permalink
Merge pull request #1131 from mgttlinger/master
Browse files Browse the repository at this point in the history
Removed nesting in project structure listing
  • Loading branch information
ceedubs authored Jun 15, 2016
2 parents 40d44bb + 80d8da2 commit 1d62cf1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions docs/src/main/tut/freemonad.md
Original file line number Diff line number Diff line change
Expand Up @@ -461,10 +461,10 @@ From a computational point of view, `Free` recursive structure can be
seen as a sequence of operations.

- `Pure` returns an `A` value and ends the entire computation.
- `Suspend` is a continuation; it suspends the current computation
with the suspension functor `F` (which can represent a command for
example) and hands control to the caller. `A` represents a value
bound to this computation.
- `Suspend` is a continuation; it suspends the current computation
with the suspension functor `F` (which can represent a command for
example) and hands control to the caller. `A` represents a value
bound to this computation.

Please note this `Free` construction has the interesting quality of
_encoding_ the recursion on the heap instead of the stack as classic
Expand Down
2 changes: 1 addition & 1 deletion docs/src/site/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ In an attempt to be more modular, Cats is broken up into a number of sub-project
* *core* - contains type class definitions (e.g. Functor, Applicative, Monad), essential datatypes, and
type class instances for those datatypes and standard library types
* *laws* - laws for the type classes, used to validate type class instances
* *cats-free* - free structures such as the free monad, and supporting type classes.
* *cats-free* - free structures such as the free monad, and supporting type classes.
* *tests* - tests that check type class instances with laws from *laws*
* *docs* - The source for this website

Expand Down

0 comments on commit 1d62cf1

Please sign in to comment.