Skip to content

Commit 5e4cf10

Browse files
authored
const example review feedback
1 parent f299eff commit 5e4cf10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Data/Function.purs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ flip f b a = f a b
2727
-- | const 1 "hello" = 1
2828
-- | ```
2929
-- |
30-
-- | Can also be thought of as creating a function that ignores its argument:
30+
-- | It can also be thought of as creating a function that ignores its argument:
3131
-- |
3232
-- | ```purescript
33-
-- | const 1 == \_ -> 1
33+
-- | const 1 = \_ -> 1
3434
-- | ```
3535
const :: forall a b. a -> b -> a
3636
const a _ = a

0 commit comments

Comments
 (0)