Merge pull request #153 from jethrolarson/noTODO

Remove TODO entries. TODO stuff can be managed by issues
This commit is contained in:
hemanth.hm 2017-06-08 13:18:09 +05:30 committed by GitHub
commit d5be05e7d3

View file

@ -344,10 +344,6 @@ addOne(2) // 3
addOne('some string') // Contract violated: expected int -> int addOne('some string') // Contract violated: expected int -> int
``` ```
## Guarded Functions
TODO
## Category ## Category
A category in category theory is a collection of objects and morphisms between them. In programming, typically types A category in category theory is a collection of objects and morphisms between them. In programming, typically types
@ -734,10 +730,6 @@ const sum = (list) => list.reduce((acc, val) => acc + val, 0)
sum([1, 2, 3]) // 6 sum([1, 2, 3]) // 6
``` ```
## Traversable
TODO
## Type Signatures ## Type Signatures
Often functions in JavaScript will include comments that indicate the types of their arguments and return values. Often functions in JavaScript will include comments that indicate the types of their arguments and return values.