aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-08-22 14:02:48 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-08-22 14:02:48 -0400
commitad51b208b4924d04f1d6a804178a67994b4f9e59 (patch)
tree9ae29e0af02b7406a0cf07fdd8b0dd7fdac0aedf /docs
parent2055439be4f5053b9a4d631cefd8bb7c83a8e4e3 (diff)
Overhaul of import syntax. Now everything uses `use`: `use foo`, `use
./foo.tm`, `use <foo.h>`, `use libfoo.so`
Diffstat (limited to 'docs')
-rw-r--r--docs/libraries.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/libraries.md b/docs/libraries.md
index cd69a14a..41f29cba 100644
--- a/docs/libraries.md
+++ b/docs/libraries.md
@@ -48,7 +48,7 @@ Now, what happens if we want to _use_ the compiled object file?
```
// File: baz.tm
-foo := use ./foo
+foo := use ./foo.tm
func say_stuff():
say("I got {foo.my_variable} from foo")