We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cc069b commit d69bd75Copy full SHA for d69bd75
src/Data/Either.purs
@@ -283,7 +283,7 @@ note' f = maybe' (Left <<< f) Right
283
hush :: forall a b. Either a b -> Maybe b
284
hush = either (const Nothing) Just
285
286
--- | Turns an `Either` into a `Maybe`, by throwing eventual `Right` values away and converting
+-- | Turns an `Either` into a `Maybe`, by throwing potential `Right` values away and converting
287
-- | them into `Nothing`. `Left` values get turned into `Just`s.
288
-- |
289
-- | ```purescript
0 commit comments