Skip to content

Commit cc93674

Browse files
bors[bot]Shuenhoy
andauthored
Merge #867
867: fix missing code markup in applicative doc r=Marwes a=Shuenhoy ![image](https://user-images.githubusercontent.com/2196156/90028542-613cf980-dcec-11ea-843d-c26df693d8b3.png) Co-authored-by: Haoran SUN <[email protected]>
2 parents b27cb36 + ea79663 commit cc93674

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

std/applicative.glu

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ let { Functor, map } = import! std.functor
88
///
99
/// The following laws should hold:
1010
///
11-
/// * wrap id <*> v = v
12-
/// * wrap (<<) <*> u <*> v <*> w = u <*> (v <*> w)
13-
/// * wrap f <*> wrap x = wrap (f x)
14-
/// * u <*> wrap y = wrap (\g -> g x) <*> u
11+
/// * `wrap id <*> v = v`
12+
/// * `wrap (<<) <*> u <*> v <*> w = u <*> (v <*> w)`
13+
/// * `wrap f <*> wrap x = wrap (f x)`
14+
/// * `u <*> wrap y = wrap (\g -> g x) <*> u`
1515
#[implicit]
1616
type Applicative (f : Type -> Type) = {
1717
functor : Functor f,

0 commit comments

Comments
 (0)