aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-29 12:54:31 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-29 12:54:31 -0400
commit04d9adc8138566eec5d6bf7b233a6c617306bcce (patch)
tree8414c07e92cdd17613190cd6a8e179b2eed2f00c /ast.c
parentd94053ca7768037016cbcacc4cadf843dad1bea6 (diff)
Switch naming convention to use '$' in symbols more
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ast.c b/ast.c
index e0354f53..e47ba571 100644
--- a/ast.c
+++ b/ast.c
@@ -26,9 +26,9 @@ static CORD optional_tagged_type(const char *tag, type_ast_t *ast);
CORD xml_escape(CORD text)
{
- text = Text__replace(text, "&", "&amp;", INT64_MAX);
- text = Text__replace(text, "<", "&lt;", INT64_MAX);
- text = Text__replace(text, ">", "&gt;", INT64_MAX);
+ text = Text$replace(text, "&", "&amp;", INT64_MAX);
+ text = Text$replace(text, "<", "&lt;", INT64_MAX);
+ text = Text$replace(text, ">", "&gt;", INT64_MAX);
return text;
}