From 4ca95835c3b00a8ff2f88beeb9608927d1b0b6b4 Mon Sep 17 00:00:00 2001 From: mseri Date: Tue, 28 Jun 2016 09:37:19 +0100 Subject: [PATCH] fix typo --- learn/eff/index.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/learn/eff/index.markdown b/learn/eff/index.markdown index 52cfd1b..501a458 100644 --- a/learn/eff/index.markdown +++ b/learn/eff/index.markdown @@ -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