Rebuilt some sphinx docs.

This commit is contained in:
Simon Forman
2020-04-24 17:21:08 -07:00
parent ff6d427b2f
commit d7d6114963
13 changed files with 665 additions and 3864 deletions
+2 -2
View File
@@ -584,7 +584,7 @@ The definition is a little longer but, I think, more elegant and easier to under
```python
from joy.library import FunctionWrapper
from joy.utils.stack import pushback
from joy.utils.stack import concat
from notebook_preamble import D
@@ -607,7 +607,7 @@ def cmp_(stack, expression, dictionary):
L
'''
L, (E, (G, (b, (a, stack)))) = stack
expression = pushback(G if a > b else L if a < b else E, expression)
expression = concat(G if a > b else L if a < b else E, expression)
return stack, expression, dictionary