Remove TODO entries. TODO stuff can be managed by issues

This commit is contained in:
jethro larson 2017-06-06 13:20:33 -07:00
parent 6256c79347
commit 4f869c86d9

View file

@ -256,14 +256,6 @@ const predicate = (a) => a > 2;
[1, 2, 3, 4].filter(predicate); // [3, 4]
```
## Contracts
TODO
## Guarded Functions
TODO
## Categories
Objects with associated functions that adhere to certain rules. E.g. [Monoid](#monoid)
@ -626,10 +618,6 @@ const sum = (list) => list.reduce((acc, val) => acc + val, 0);
sum([1, 2, 3]) // 6
```
## Traversable
TODO
## Type Signatures
Often functions in JavaScript will include comments that indicate the types of their arguments and return values.