Skip to content

Commit dd5df0b

Browse files
authored
Merge pull request #42 from bouzuya/fix-docs
fix comment
2 parents 81f0397 + 95991c5 commit dd5df0b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Data/Maybe/First.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import Data.Ord (class Ord1)
1515
-- | ``` purescript
1616
-- | First (Just x) <> First (Just y) == First (Just x)
1717
-- | First Nothing <> First (Just y) == First (Just y)
18-
-- | First Nothing <> Nothing == First Nothing
18+
-- | First Nothing <> First Nothing == First Nothing
1919
-- | mempty :: First _ == First Nothing
2020
-- | ```
2121
newtype First a = First (Maybe a)

src/Data/Maybe/Last.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import Data.Ord (class Ord1)
1414
-- |
1515
-- | ``` purescript
1616
-- | Last (Just x) <> Last (Just y) == Last (Just y)
17-
-- | Last (Just x) <> Nothing == Last (Just x)
18-
-- | Last Nothing <> Nothing == Last Nothing
17+
-- | Last (Just x) <> Last Nothing == Last (Just x)
18+
-- | Last Nothing <> Last Nothing == Last Nothing
1919
-- | mempty :: Last _ == Last Nothing
2020
-- | ```
2121
newtype Last a = Last (Maybe a)

0 commit comments

Comments
 (0)