Skip to content

Commit

Permalink
Issue #16
Browse files Browse the repository at this point in the history
  • Loading branch information
tonymorris committed Sep 16, 2013
1 parent 96f0820 commit 2f2ab87
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 5 deletions.
1 change: 0 additions & 1 deletion .ghci
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
:l src/Course.hs
:set prompt ">> "
:set -Wall
:set -fno-warn-unused-imports
:set -fno-warn-unused-binds
:set -fno-warn-unused-do-bind
:set -fno-warn-type-defaults
Expand Down
1 change: 0 additions & 1 deletion course.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ library
, array

ghc-options: -Wall
-fno-warn-unused-imports
-fno-warn-unused-binds
-fno-warn-unused-do-bind
-fno-warn-type-defaults
Expand Down
2 changes: 1 addition & 1 deletion src/Monad/Functor.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Monad.Functor where

import Core(IO(..), Maybe(..), error)
import Core(IO, Maybe(..), error)
import qualified Prelude as P(fmap)
import Intro.Id(Id(..))
import Intro.Optional(Optional(..))
Expand Down
2 changes: 1 addition & 1 deletion src/Monad/Monad.hs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module Monad.Monad where

import Core(IO(..), Maybe(..), Bool(..), Int(..), (=<<), error)
import Core(IO, Maybe(..), Bool(..), Int, (=<<), error)
import qualified Prelude as P(return, (=<<))
import Intro.Id(Id(..))
import Intro.Optional(Optional(..))
Expand Down
2 changes: 1 addition & 1 deletion src/Monad/State.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

module Monad.State where

import Core(Ord(..), Integer(..), Bool(..), error)
import Core(Ord(..), Integer, Bool(..), error)
import Intro.Optional(Optional(..))
import Structure.List(List(..))
import Monad.Functor(Functor(..))
Expand Down

0 comments on commit 2f2ab87

Please sign in to comment.