aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/data/text.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-04-08 05:42:36 -0400
committerEduardo Julian2022-04-08 05:42:36 -0400
commit0d909187d5b9effcd08f533d50af7d29c0d6bfd8 (patch)
treec50f12c5e47e3db90c3a701b54ee9953da942210 /stdlib/source/library/lux/data/text.lux
parente5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (diff)
De-sigil-ification: $
Diffstat (limited to 'stdlib/source/library/lux/data/text.lux')
-rw-r--r--stdlib/source/library/lux/data/text.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/data/text.lux b/stdlib/source/library/lux/data/text.lux
index 7f530a137..22ee37a50 100644
--- a/stdlib/source/library/lux/data/text.lux
+++ b/stdlib/source/library/lux/data/text.lux
@@ -122,7 +122,7 @@
(def: .public (enclosed [left right] content)
(-> [Text Text] Text Text)
- ($_ "lux text concat" left content right))
+ (all "lux text concat" left content right))
(def: .public (enclosed' boundary content)
(-> Text Text Text)
@@ -182,7 +182,7 @@
(<| (maybe.else template)
(do maybe.monad
[[pre post] (..split_by pattern template)]
- (in ($_ "lux text concat" pre replacement post)))))
+ (in (all "lux text concat" pre replacement post)))))
(for @.js (these (macro: (defined? tokens lux)
(case tokens
@@ -216,7 +216,7 @@
right template])
(case (..split_by pattern right)
{.#Some [pre post]}
- (again ($_ "lux text concat" left pre replacement) post)
+ (again (all "lux text concat" left pre replacement) post)
{.#None}
("lux text concat" left right)))]