Skip to content

Commit 8a4c4ed

Browse files
authored
Fix typo in ErrorHandlingRationale.rst
The error case of Haskell's Maybe type is called `Nothing`.
1 parent 1395c25 commit 8a4c4ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/ErrorHandlingRationale.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ Haskell
11801180
Haskell provides three different common error-propagation mechanisms.
11811181
11821182
The first is that, like many other functional languages, it supports
1183-
manual propagation with a ``Maybe`` type. A function can return ``None``
1183+
manual propagation with a ``Maybe`` type. A function can return ``Nothing``
11841184
to indicate that it couldn't produce a more useful result. This is
11851185
the most common failure method for functions in the functional subset
11861186
of the library.

0 commit comments

Comments
 (0)