Skip to content

Commit c2c778c

Browse files
author
Isaac Shapira
committed
caps
1 parent c8324b4 commit c2c778c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Data/These.hs

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ mergeThese = these id id
110110
mergeTheseWith :: (a -> c) -> (b -> c) -> (c -> c -> c) -> These a b -> c
111111
mergeTheseWith f g op t = mergeThese op $ mapThese f g t
112112

113-
-- | Construct these inside an Alternative.
113+
-- | Construct These inside an Alternative.
114114
fromAlt :: Alternative f => f a -> f b -> f (These a b)
115115
fromAlt x y = These <$> x <*> y <|> That <$> y <|> This <$> x
116116

0 commit comments

Comments
 (0)