aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/abstract/monad/indexed.lux
diff options
context:
space:
mode:
authorEduardo Julian2021-09-09 00:29:12 -0400
committerEduardo Julian2021-09-09 00:29:12 -0400
commitef77466323f85a3d1b65b46a3deb93652ef22085 (patch)
treec2715b8cf6e7864fef87e22ee6e206c7c1758849 /stdlib/source/library/lux/abstract/monad/indexed.lux
parent085c9a6ef151531cb01b842ed2f4366a49b78367 (diff)
The old record syntax has been re-purposed as variant syntax.
Diffstat (limited to 'stdlib/source/library/lux/abstract/monad/indexed.lux')
-rw-r--r--stdlib/source/library/lux/abstract/monad/indexed.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/abstract/monad/indexed.lux b/stdlib/source/library/lux/abstract/monad/indexed.lux
index 99446f84f..6e8ddb602 100644
--- a/stdlib/source/library/lux/abstract/monad/indexed.lux
+++ b/stdlib/source/library/lux/abstract/monad/indexed.lux
@@ -55,9 +55,9 @@
(def: named_monad
(Parser [(Maybe Text) Code])
- (<>.either (<code>.record (<>.and (\ <>.monad each (|>> #.Some)
- <code>.local_identifier)
- <code>.any))
+ (<>.either (<code>.tuple (<>.and (\ <>.monad each (|>> #.Some)
+ <code>.local_identifier)
+ <code>.any))
(\ <>.monad each (|>> [#.None])
<code>.any)))