aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/chapter_14.md
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/book/the_lux_programming_language/chapter_14.md')
-rw-r--r--documentation/book/the_lux_programming_language/chapter_14.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/book/the_lux_programming_language/chapter_14.md b/documentation/book/the_lux_programming_language/chapter_14.md
index 5552c3347..2fd53c5bb 100644
--- a/documentation/book/the_lux_programming_language/chapter_14.md
+++ b/documentation/book/the_lux_programming_language/chapter_14.md
@@ -51,7 +51,7 @@ The result is that, through the `do` macro, you can implement complex concurrent
If you're curious about how that looks, take a peek:
```clojure
-(def: .public (and left right)
+(def .public (and left right)
(All (_ a b) (-> (Async a) (Async b) (Async [a b])))
(do monad
[a left