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 d9544bd commit ec7f41fCopy full SHA for ec7f41f
README.md
@@ -19,7 +19,7 @@ String or Number.
19
- Associativity: `(x <|> y) <|> z == x <|> (y <|> z)`
20
21
For example, the `Array` (`[]`) type is an instance of `Alt`, where
22
-(<|>) is defined to be concatenation.
+`(<|>)` is defined to be concatenation.
23
24
25
## Module Control.Alternative
@@ -315,7 +315,7 @@ class (Alt f) <= Plus f where
315
empty :: forall a. f a
316
```
317
318
-The `Plus` type class extends the `Alt` typeclass with a value that
+The `Plus` type class extends the `Alt` type class with a value that
319
should be the left and right identity for `(<|>)`.
320
321
`Plus` instances should satisfy the following laws:
0 commit comments