diff options
Diffstat (limited to 'stdlib/source/library/lux/data/format/xml.lux')
-rw-r--r-- | stdlib/source/library/lux/data/format/xml.lux | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/stdlib/source/library/lux/data/format/xml.lux b/stdlib/source/library/lux/data/format/xml.lux index 54e544583..b978eb195 100644 --- a/stdlib/source/library/lux/data/format/xml.lux +++ b/stdlib/source/library/lux/data/format/xml.lux @@ -200,11 +200,11 @@ (def: (sanitize_value input) (-> Text Text) (|> input - (text.replace_all "&" "&") - (text.replace_all "<" "<") - (text.replace_all ">" ">") - (text.replace_all "'" "'") - (text.replace_all text.double_quote """))) + (text.replaced "&" "&") + (text.replaced "<" "<") + (text.replaced ">" ">") + (text.replaced "'" "'") + (text.replaced text.double_quote """))) (def: .public (tag [namespace name]) {#.doc (doc "The text format of a XML tag.")} |