aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/target/python.lux
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--stdlib/source/library/lux/target/python.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/library/lux/target/python.lux b/stdlib/source/library/lux/target/python.lux
index 0cf6d2c27..3c8450b31 100644
--- a/stdlib/source/library/lux/target/python.lux
+++ b/stdlib/source/library/lux/target/python.lux
@@ -150,7 +150,7 @@
[%.frac])
:abstraction)))
- (def: sanitize
+ (def: safe
(-> Text Text)
(`` (|>> (~~ (template [<find> <replace>]
[(text.replace_all <find> <replace>)]
@@ -169,7 +169,7 @@
(def: #export string
(-> Text Literal)
- (|>> ..sanitize
+ (|>> ..safe
(text.enclose [text.double_quote text.double_quote])
:abstraction))
@@ -444,7 +444,7 @@
(def: #export (comment commentary on)
(All [brand] (-> Text (Code brand) (Code brand)))
- (:abstraction (format "# " (..sanitize commentary) text.new_line
+ (:abstraction (format "# " (..safe commentary) text.new_line
(:representation on))))
)