aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/appendix_e.md
diff options
context:
space:
mode:
authorEduardo Julian2022-06-16 00:48:19 -0400
committerEduardo Julian2022-06-16 00:48:19 -0400
commit9e2f1e76f2c8df01ed7687d934c3210fcf676bd6 (patch)
tree115fab5bd8a5f53dc0d13ce5453095324a83496f /documentation/book/the_lux_programming_language/appendix_e.md
parentf92c806ee8da63f04bbefbf558f6249bacdb47ea (diff)
De-sigil-ification: suffix : [Part 13]
Diffstat (limited to '')
-rw-r--r--documentation/book/the_lux_programming_language/appendix_e.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/book/the_lux_programming_language/appendix_e.md b/documentation/book/the_lux_programming_language/appendix_e.md
index 4ce648625..b31ec03d0 100644
--- a/documentation/book/the_lux_programming_language/appendix_e.md
+++ b/documentation/book/the_lux_programming_language/appendix_e.md
@@ -93,7 +93,7 @@ Here are some examples from the `library/lux/ffi` module, where I have some type
{#ProtectedP}
{#DefaultP}))
-(def: privacy_modifier^
+(def privacy_modifier^
(Parser Privacy)
(let [(^open "[0]") <>.monad]
($_ <>.or
@@ -121,7 +121,7 @@ Here's an example of `<>.and` in action:
[Text (Type Value)])
... From library/lux/ffi
-(def: (argument^ type_vars)
+(def (argument^ type_vars)
(-> (List (Type Var)) (Parser Argument))
(<code>.tuple (<>.and <code>.local_symbol
(..type^ type_vars))))