Minor edits.

This commit is contained in:
sforman 2023-09-28 11:36:19 -07:00
parent 0e380b7748
commit fa4771fea7
3 changed files with 4 additions and 4 deletions

View File

@ -20,7 +20,7 @@ other might be bleah.)
- `build_index.py` a crude script to convert Markdown to HTML - `build_index.py` a crude script to convert Markdown to HTML
- `html/` output of the HTML creation process. Serve the contents of - `html/` output of the HTML creation process. Serve the contents of
this directy. this directly.
- `_joy_interpreter_flowchart_url.txt` This is the URL for the SVG - `_joy_interpreter_flowchart_url.txt` This is the URL for the SVG
flowchart image generator service. flowchart image generator service.
- `Makefile` uses `build_index.py` to convert `source/` to `html/`. - `Makefile` uses `build_index.py` to convert `source/` to `html/`.

View File

@ -1 +1 @@
//www.plantuml.com/plantuml/png/NP0xRiCm38PtdO905sTe3Y0FpIMApafCruGbqg3e9hvz6Jj2WIuIXVy1yRjKIsfhoM4VGhXFb14wV2oAjP8mK3sVpoU_e6FXTooBRQS04B_HWF5XOAW5HfK2Vx7U7JH2zzHQXKt8qDMjN2K_6mx7yGPY6EXc7aswVJGpos44U5CSeYQg29yyizpvItJeN-fLCStxZDaTtOQr1MCMcTS5nfNt-XQ9-9FocWp_ASW3ZQ4LPV8DqkkxSLdhTAmhR0BEx3RteMNyRFWEI26oQ4dPkP3rZbYMS76Ny_u5 https://www.plantuml.com/plantuml/png/NP0xRiCm38PtdO905sTe3Y0FpIMApafCruGbqg3e9hvz6Jj2WIuIXVy1yRjKIsfhoM4VGhXFb14wV2oAjP8mK3sVpoU_e6FXTooBRQS04B_HWF5XOAW5HfK2Vx7U7JH2zzHQXKt8qDMjN2K_6mx7yGPY6EXc7aswVJGpos44U5CSeYQg29yyizpvItJeN-fLCStxZDaTtOQr1MCMcTS5nfNt-XQ9-9FocWp_ASW3ZQ4LPV8DqkkxSLdhTAmhR0BEx3RteMNyRFWEI26oQ4dPkP3rZbYMS76Ny_u5

View File

@ -115,8 +115,8 @@ quoted programs onto the pending expression ("continuation").
### Literals ### Literals
Literal values (integers, Booleans, lists) are put onto the stack. Literal values (integers, Booleans, lists) are put onto the stack.
Literals can be thought of as functions that put accept a stack and Literals can be thought of as functions that accept a stack and
return it with the value they denote on top, if you like. return it with the value they denote on top.
### Functions ### Functions