aboutsummaryrefslogtreecommitdiff
path: root/docs/libraries.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-01-12 16:49:58 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-01-12 16:49:58 -0500
commit645d66e0de0f201404d9ad4b210f90c139a247ff (patch)
tree08367c3631b928752cde94083bdfe2ae49db0b79 /docs/libraries.md
parentb025cf269d2e07e179be4a0e34d936862dc640c2 (diff)
Change table syntax to `{key=value}` and `{:K,V}`/`{K,V}`
Diffstat (limited to 'docs/libraries.md')
-rw-r--r--docs/libraries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libraries.md b/docs/libraries.md
index 5aea0811..983497fa 100644
--- a/docs/libraries.md
+++ b/docs/libraries.md
@@ -51,7 +51,7 @@ Now, what happens if we want to _use_ the compiled object file?
foo := use ./foo.tm
func say_stuff():
- say("I got {foo.my_variable} from foo")
+ say("I got $(foo.my_variable) from foo")
func main():
say_stuff()