Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add link to hierarchy in IO doc and fix grammar error #166

Merged
merged 2 commits into from Mar 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions site/src/main/tut/datatypes/io.md
Expand Up @@ -107,7 +107,7 @@ def fib(n: Int, a: Long = 0, b: Long = 1): IO[Long] =
}
```

`IO` implements all the typeclasses shown in the hierarchy. Therefore
`IO` implements all the typeclasses shown in the [hierarchy](../typeclasses/). Therefore
all those operations are available for `IO`, in addition to some
others.

Expand Down Expand Up @@ -163,7 +163,7 @@ reference is returned.

### Synchronous Effects — IO.apply

It's probably is the most used builder and the equivalent of
It's probably the most used builder and the equivalent of
`Sync[IO].delay`, describing `IO` operations that can be evaluated
immediately, on the current thread and call-stack:

Expand Down