Skip to content

Commit 7857fb1

Browse files
committed
Merge pull request #75 from sharkdp/fix-docu
Small fix in the documentation...
2 parents b1c0113 + dafa7b5 commit 7857fb1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Control/Bind.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import Data.Functor (class Functor, map, void, ($>), (<#>), (<$), (<$>))
3333
-- | Instances must satisfy the following law in addition to the `Apply`
3434
-- | laws:
3535
-- |
36-
-- | - Associativity: `(x >>= f) >>= g = x >>= (\k => f k >>= g)`
36+
-- | - Associativity: `(x >>= f) >>= g = x >>= (\k -> f k >>= g)`
3737
-- |
3838
-- | Associativity tells us that we can regroup operations which use `do`
3939
-- | notation so that we can unambiguously write, for example:

0 commit comments

Comments
 (0)