aboutsummaryrefslogtreecommitdiff
path: root/test/minmax.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 14:20:18 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 14:20:18 -0400
commit2bb2ff871fa1761478442bec5f6a32c9428360a1 (patch)
tree9b73df7a0c50c02353ae7bca7c2cd54788ef0077 /test/minmax.tm
parent59845e610f2c90474f34079d27b5f1e07071ded4 (diff)
Change method calls to use `foo.baz()` instead of `foo:baz()`
Diffstat (limited to 'test/minmax.tm')
-rw-r--r--test/minmax.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/minmax.tm b/test/minmax.tm
index f28aec91..a0f0640f 100644
--- a/test/minmax.tm
+++ b/test/minmax.tm
@@ -18,7 +18,7 @@ func main():
>> Foo(999, 1) _min_.y Foo(1, 10)
= Foo(x=999, y=1)
- >> Foo(-999, -999) _max_:len() Foo(10, 10)
+ >> Foo(-999, -999) _max_.len() Foo(10, 10)
= Foo(x=-999, y=-999)