Skip to content

Commit ec7f41f

Browse files
committed
Regenerate docs
1 parent d9544bd commit ec7f41f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ String or Number.
1919
- Associativity: `(x <|> y) <|> z == x <|> (y <|> z)`
2020

2121
For example, the `Array` (`[]`) type is an instance of `Alt`, where
22-
(<|>) is defined to be concatenation.
22+
`(<|>)` is defined to be concatenation.
2323

2424

2525
## Module Control.Alternative
@@ -315,7 +315,7 @@ class (Alt f) <= Plus f where
315315
empty :: forall a. f a
316316
```
317317

318-
The `Plus` type class extends the `Alt` typeclass with a value that
318+
The `Plus` type class extends the `Alt` type class with a value that
319319
should be the left and right identity for `(<|>)`.
320320

321321
`Plus` instances should satisfy the following laws:

0 commit comments

Comments
 (0)