aboutsummaryrefslogtreecommitdiff
path: root/docs/tables.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-04-06 23:37:05 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-04-06 23:37:05 -0400
commit1a196aa8f724971e531487f9cdd541f7957cfd92 (patch)
tree52a36701065ab0e3f7012765c909c3b2a3fd2e49 /docs/tables.md
parent4a3db447ce820617a72bdd9fc6217c84c3799bea (diff)
Update syntax in docs
Diffstat (limited to 'docs/tables.md')
-rw-r--r--docs/tables.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tables.md b/docs/tables.md
index 605a1486..c0376f38 100644
--- a/docs/tables.md
+++ b/docs/tables.md
@@ -139,10 +139,10 @@ t := {"A"=10, "B"=20}
You can iterate over the key/value pairs in a table like this:
```tomo
-for key, value in table:
+for key, value in table
...
-for key in table:
+for key in table
...
```