Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions learn/eff/index.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ This program uses `do`-notation to combine two types of native effects provided
We can inspect the type of `printRandom` by using the `:type command`

> import RandomExample
> :type main
> :type printRandom

The type of `main` will be printed to the console. You should see a type which looks like this:
The type of `printRandom` will be printed to the console. You should see a type which looks like this:

forall e. Eff (console :: CONSOLE, random :: RANDOM | e) Unit

Expand Down