Skip to content

Commit

Permalink
fixed type error in readme
Browse files Browse the repository at this point in the history
why doesn't markdown type check!
  • Loading branch information
mxswd committed Jul 14, 2014
1 parent 39f3891 commit ed51ecc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Examples
**Data abstractions:**

```swift
let xs = [1, 2, 0, 3, 4]
let xs: [Int8] = [1, 2, 0, 3, 4]

// we can use the Min semigroup to find the minimal element in xs
sconcat(Min(), 2, xs) // 0
Expand Down Expand Up @@ -121,6 +121,7 @@ Types with instances of these operators:
- `Optional`
- `Array` (non-determinism, cross product)
- `Either` (right bias)
- `Result`
- `ImArray`
- `Set` (except `<*>`)

Expand Down

0 comments on commit ed51ecc

Please sign in to comment.