Skip to content

Commit 81f0397

Browse files
authored
Merge pull request #41 from gasi/patch-1
Remove mention of `return` function
2 parents fffff8f + 169ca64 commit 81f0397

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Data/Maybe.purs

+1-2
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,10 @@ instance applyMaybe :: Apply Maybe where
6969
apply Nothing _ = Nothing
7070

7171
-- | The `Applicative` instance enables lifting of values into `Maybe` with the
72-
-- | `pure` or `return` function (`return` is an alias for `pure`):
72+
-- | `pure` function:
7373
-- |
7474
-- | ``` purescript
7575
-- | pure x :: Maybe _ == Just x
76-
-- | return x :: Maybe _ == Just x
7776
-- | ```
7877
-- |
7978
-- | Combining `Functor`'s `<$>` with `Apply`'s `<*>` and `Applicative`'s

0 commit comments

Comments
 (0)