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 f299eff commit 5e4cf10Copy full SHA for 5e4cf10
src/Data/Function.purs
@@ -27,10 +27,10 @@ flip f b a = f a b
27
-- | const 1 "hello" = 1
28
-- | ```
29
-- |
30
--- | Can also be thought of as creating a function that ignores its argument:
+-- | It can also be thought of as creating a function that ignores its argument:
31
32
-- | ```purescript
33
--- | const 1 == \_ -> 1
+-- | const 1 = \_ -> 1
34
35
const :: forall a b. a -> b -> a
36
const a _ = a
0 commit comments