Skip to content

Commit d69bd75

Browse files
Update src/Data/Either.purs
1 parent 0cc069b commit d69bd75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Data/Either.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ note' f = maybe' (Left <<< f) Right
283283
hush :: forall a b. Either a b -> Maybe b
284284
hush = either (const Nothing) Just
285285

286-
-- | Turns an `Either` into a `Maybe`, by throwing eventual `Right` values away and converting
286+
-- | Turns an `Either` into a `Maybe`, by throwing potential `Right` values away and converting
287287
-- | them into `Nothing`. `Left` values get turned into `Just`s.
288288
-- |
289289
-- | ```purescript

0 commit comments

Comments
 (0)