aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/collection/tree.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/collection/tree.lux')
-rw-r--r--stdlib/source/library/lux/data/collection/tree.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/data/collection/tree.lux b/stdlib/source/library/lux/data/collection/tree.lux
index d96d31371..f05521c70 100644
--- a/stdlib/source/library/lux/data/collection/tree.lux
+++ b/stdlib/source/library/lux/data/collection/tree.lux
@@ -16,7 +16,7 @@
[syntax (.only syntax)]
["[0]" code]]]])
-(type: .public (Tree a)
+(type .public (Tree a)
(Record
[#value a
#children (List (Tree a))]))
@@ -39,7 +39,7 @@
[#value value
#children children])
-(type: Tree_Code
+(type Tree_Code
(Rec Tree_Code
[Code (List Tree_Code)]))