From 68bedd3c23757a8576e77f38e38ddcf9ecd26d19 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sun, 21 Sep 2025 18:01:19 -0400 Subject: Use colons instead of '=' for tables (e.g. {1: 2}) --- test/text.tm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/text.tm') 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 "".translate({"<"="<", ">"=">"}) == "<tag>" + assert "".translate({"<": "<", ">": ">"}) == "<tag>" assert "Abc".repeat(3) == "AbcAbcAbc" -- cgit v1.2.3