aboutsummaryrefslogtreecommitdiff
path: root/docs/enums.md
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 /docs/enums.md
parent59845e610f2c90474f34079d27b5f1e07071ded4 (diff)
Change method calls to use `foo.baz()` instead of `foo:baz()`
Diffstat (limited to 'docs/enums.md')
-rw-r--r--docs/enums.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/enums.md b/docs/enums.md
index 72e4f3be..45321d25 100644
--- a/docs/enums.md
+++ b/docs/enums.md
@@ -85,4 +85,4 @@ enum VariousThings(AnInteger(i:Int), TwoWords(word1, word2:Text), Nothing):
```
Functions defined in an enum's namespace can be invoked as methods with `:` if
-the first argument is the enum's type or a pointer to one (`vt:doop()`).
+the first argument is the enum's type or a pointer to one (`vt.doop()`).