Fix formatting.

This commit is contained in:
Chris O'Donnell 2016-06-12 16:11:22 -04:00
parent b78ac4648e
commit 86b9d61555

View file

@ -5,6 +5,7 @@
### declarepath
`(declarepath name)`
`(declarepath name params)`
Declares a new symbol available to be defined as a path. If the path will require parameters, these must be specified here.
@ -20,6 +21,8 @@ See also [providepath](#providepath)
(0 0 2 3 4)
```
## Collector Macros
### defcollector
`(defcollector name params collect-val-impl)`
@ -38,9 +41,12 @@ An informative example is the actual implementation of `putval`, which follows.
(3 4 5 6 7)
```
## Navigator Macros
### defnav
`(defnav name params select-impl transform-impl)`
`(defnav name params transform-impl select-impl)`
Canonically the first is used.
@ -78,6 +84,7 @@ See also [nav](#nav)
### nav
`(nav params select-impl transform-impl)`
`(nav params transform-impl select-impl)`
Returns an "anonymous navigator." See [defnav](#defnav).