Skip to content

Commit

Permalink
Merge branch 'master' into docs/deprecated-functions
Browse files Browse the repository at this point in the history
  • Loading branch information
dalefrancis88 committed May 7, 2021
2 parents 182cdfd + 1ff50f7 commit eee311e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/pages/docs/crocks/Maybe.md
Original file line number Diff line number Diff line change
Expand Up @@ -1153,7 +1153,7 @@ safe :: ((b -> Boolean) | Pred) -> b -> Maybe a
When using a `Maybe`, it is a common practice to lift into a `Just` or
a `Nothing` depending on a condition on the value to be lifted. It is so
common that it warrants a function, and that function is called `safe`. Provide
a predicate (a function that returns a Boolean) or a [`Pred`][pred] datatypea
a predicate (a function that returns a Boolean) or a [`Pred`][pred] datatype
and the value to be lifted. The value will be evaluated against the predicate,
and will lift it into a `Just` if true and a `Nothing` if false.

Expand Down

0 comments on commit eee311e

Please sign in to comment.