aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation
diff options
context:
space:
mode:
authorEduardo Julian2021-08-30 04:21:53 -0400
committerEduardo Julian2021-08-30 04:21:53 -0400
commit834ed92e323fd274c2da08c82a7d8785663e10be (patch)
treed7b0f211c50a74f70a1ae01f5311be4e06575f4d /stdlib/source/documentation
parentef437d6584d8fd863c0dab276e5a3d4dc094767b (diff)
Better tagged type documentation + lexer fix.
Diffstat (limited to '')
-rw-r--r--stdlib/source/documentation/lux/control/maybe.lux2
-rw-r--r--stdlib/source/documentation/lux/data/collection/list.lux2
2 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/documentation/lux/control/maybe.lux b/stdlib/source/documentation/lux/control/maybe.lux
index dabdcde5e..f096b1d40 100644
--- a/stdlib/source/documentation/lux/control/maybe.lux
+++ b/stdlib/source/documentation/lux/control/maybe.lux
@@ -35,7 +35,7 @@
"Can be used as a guard in (co)monadic be/do expressions."
[(do monad
[value (do_something 1 2 3)
- /.when (passes_test? value)]
+ .when (passes_test? value)]
(do_something_else 4 5 6))])
(.def: .public documentation
diff --git a/stdlib/source/documentation/lux/data/collection/list.lux b/stdlib/source/documentation/lux/data/collection/list.lux
index f5dda38bc..d11cc2605 100644
--- a/stdlib/source/documentation/lux/data/collection/list.lux
+++ b/stdlib/source/documentation/lux/data/collection/list.lux
@@ -174,7 +174,7 @@
"Can be used as a guard in (co)monadic be/do expressions."
[(do monad
[value (do_something 1 2 3)
- /.when (passes_test? value)]
+ .when (passes_test? value)]
(do_something_else 4 5 6))])
(.def: .public documentation