diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2024-03-29 12:54:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2024-03-29 12:54:31 -0400 |
| commit | 04d9adc8138566eec5d6bf7b233a6c617306bcce (patch) | |
| tree | 8414c07e92cdd17613190cd6a8e179b2eed2f00c /ast.c | |
| parent | d94053ca7768037016cbcacc4cadf843dad1bea6 (diff) | |
Switch naming convention to use '$' in symbols more
Diffstat (limited to 'ast.c')
| -rw-r--r-- | ast.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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, "&", "&", INT64_MAX); - text = Text__replace(text, "<", "<", INT64_MAX); - text = Text__replace(text, ">", ">", INT64_MAX); + text = Text$replace(text, "&", "&", INT64_MAX); + text = Text$replace(text, "<", "<", INT64_MAX); + text = Text$replace(text, ">", ">", INT64_MAX); return text; } |
