Skip to content

Commit 24efe49

Browse files
committed
Update dependencies
1 parent 934e380 commit 24efe49

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
## Module Data.Unfoldable
44

5-
### Type Classes
5+
#### `Unfoldable`
66

7-
class Unfoldable t where
8-
unfoldr :: forall a b. (b -> Maybe (Tuple a b)) -> b -> t a
7+
``` purescript
8+
class Unfoldable t where
9+
unfoldr :: forall a b. (b -> Maybe (Tuple a b)) -> b -> t a
10+
```
911

1012

11-
### Type Class Instances
13+
#### `unfoldableArray`
1214

13-
instance unfoldableArray :: Unfoldable Prim.Array
15+
``` purescript
16+
instance unfoldableArray :: Unfoldable Prim.Array
17+
```

bower.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"package.json"
1919
],
2020
"dependencies": {
21-
"purescript-arrays": "^0.3.0",
22-
"purescript-maybe": "^0.2.1",
23-
"purescript-tuples": "^0.2.3"
21+
"purescript-arrays": "~0.3.0",
22+
"purescript-maybe": "~0.2.1",
23+
"purescript-tuples": "~0.3.0"
2424
}
2525
}

0 commit comments

Comments
 (0)