aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/chapter_17.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/chapter_17.md
parentf92c806ee8da63f04bbefbf558f6249bacdb47ea (diff)
De-sigil-ification: suffix : [Part 13]
Diffstat (limited to 'documentation/book/the_lux_programming_language/chapter_17.md')
-rw-r--r--documentation/book/the_lux_programming_language/chapter_17.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/book/the_lux_programming_language/chapter_17.md b/documentation/book/the_lux_programming_language/chapter_17.md
index 73ece8cb5..e13693d89 100644
--- a/documentation/book/the_lux_programming_language/chapter_17.md
+++ b/documentation/book/the_lux_programming_language/chapter_17.md
@@ -100,7 +100,7 @@ And the other is meant for when the changes are so massive, you might as well ju
First, let's go with the smaller mechanism:
```clojure
-(def: js "JavaScript")
+(def js "JavaScript")
(for ["JVM" (do jvm stuff)
..js (do js stuff)]
@@ -129,7 +129,7 @@ The module `library/lux/target` contains constants with the names of currently s
To give you an example of `for` in action, here is a definition from the `library/lux/data/text` module:
```clojure
-(def: .public (replaced pattern replacement template)
+(def .public (replaced pattern replacement template)
(-> Text Text Text Text)
(for [@.old
(:as Text