Skip to content

Commit 6587f19

Browse files
Decrease header level to 3 for Monad and Applicative "ado/do notation"
1 parent 0b62cf3 commit 6587f19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Control/Applicative.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import Data.Unit (Unit, unit)
3030
-- | - Homomorphism: `(pure f) <*> (pure x) = pure (f x)`
3131
-- | - Interchange: `u <*> (pure y) = (pure (_ $ y)) <*> u`
3232
-- |
33-
-- | ## Ado Notation
33+
-- | ### Ado Notation
3434
-- |
3535
-- | When using a type that has an instance for `Applicative`, one can use
3636
-- | "ado notation." In short, this code...

src/Control/Monad.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import Data.Unit (Unit)
2929
-- | - Right Identity: `x >>= pure = x`
3030
-- | - Applicative Superclass: `apply = ap`
3131
-- |
32-
-- | ## Do Notation
32+
-- | ### Do Notation
3333
-- |
3434
-- | When using a type that has an instance for `Monad`, one can use
3535
-- | "do notation." In short, this code...

0 commit comments

Comments
 (0)