aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/name.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/data/name.lux')
-rw-r--r--stdlib/source/library/lux/data/name.lux4
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/library/lux/data/name.lux b/stdlib/source/library/lux/data/name.lux
index 99d158095..bb0216ba5 100644
--- a/stdlib/source/library/lux/data/name.lux
+++ b/stdlib/source/library/lux/data/name.lux
@@ -48,7 +48,7 @@
(def: (encoded [module short])
(case module
"" short
- _ ($_ text\compose module ..separator short)))
+ _ ($_ text\composite module ..separator short)))
(def: (decoded input)
(case (text.all_split_by ..separator input)
@@ -59,4 +59,4 @@
(#.Right [module short])
_
- (#.Left (text\compose "Invalid format for Name: " input)))))
+ (#.Left (text\composite "Invalid format for Name: " input)))))