diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 18:01:19 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-09-21 18:01:19 -0400 |
| commit | 68bedd3c23757a8576e77f38e38ddcf9ecd26d19 (patch) | |
| tree | 86ce1610143efc43453f50d3413925797601c48a /test/text.tm | |
| parent | 0815de981c683cac7dbac082ee14c11894089f31 (diff) | |
Use colons instead of '=' for tables (e.g. {1: 2})
Diffstat (limited to 'test/text.tm')
| -rw-r--r-- | test/text.tm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/text.tm b/test/text.tm index c12e7a78..6631b94e 100644 --- a/test/text.tm +++ b/test/text.tm @@ -127,7 +127,7 @@ func main() assert "Hello".replace("ello", "i") == "Hi" - assert "<tag>".translate({"<"="<", ">"=">"}) == "<tag>" + assert "<tag>".translate({"<": "<", ">": ">"}) == "<tag>" assert "Abc".repeat(3) == "AbcAbcAbc" |
