summaryrefslogtreecommitdiff
path: root/docs/language
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-09 10:32:38 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-09 10:32:38 -0400
commita13b72d789c6e2ee3d94bd1b19aad3dda0aea3c3 (patch)
tree218fe41676c6a103410fc423d7c3b5c9f3da48ca /docs/language
parent4da9de3213a28c7e17945168acdb06308bb41df8 (diff)
inline fn defs
Diffstat (limited to 'docs/language')
-rw-r--r--docs/language/ownership.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/language/ownership.md b/docs/language/ownership.md
index 9af214b..71e15a7 100644
--- a/docs/language/ownership.md
+++ b/docs/language/ownership.md
@@ -21,7 +21,7 @@
References are automatically taken if the function signature specifies ref
```text
-inc_push_to_ref : Fn[Ref.x; y] $ (
+inc_push_to_ref : ([Ref.x; y]
x `push y + 1
)
int_array : Array[I64] $ ()