Skip to content

Commit

Permalink
fix comment on anon apply
Browse files Browse the repository at this point in the history
  • Loading branch information
tonymorris committed Oct 14, 2015
1 parent a256586 commit d980e78
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Course/Applicative.hs
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ lift4 ::
lift4 =
error "todo: Course.Applicative#lift4"

-- | Sequence, discarding the value of the first argument.
-- | Apply, discarding the value of the first argument.
-- Pronounced, right apply.
--
-- >>> [1,2,3] *> [4,5,6]
Expand All @@ -278,7 +278,7 @@ lift4 =
(*>) =
error "todo: Course.Applicative#(*>)"

-- | Sequence, discarding the value of the second argument.
-- | Apply, discarding the value of the second argument.
-- Pronounced, left apply.
--
-- >>> [1,2,3] <* [4,5,6]
Expand Down

0 comments on commit d980e78

Please sign in to comment.