From a13b72d789c6e2ee3d94bd1b19aad3dda0aea3c3 Mon Sep 17 00:00:00 2001 From: nodist Date: Tue, 9 Jun 2026 10:32:38 -0400 Subject: inline fn defs --- docs/type_system/overload.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/type_system/overload.md') diff --git a/docs/type_system/overload.md b/docs/type_system/overload.md index 11bf21d..9fd839e 100644 --- a/docs/type_system/overload.md +++ b/docs/type_system/overload.md @@ -11,7 +11,7 @@ Overload[Collection[FNS]] ## Example ```text -add : Overload[Fn[.native; I64; Tuple[I64.x; I64.y]; ...]; Fn[.native; F64; Tuple[F64.x; F64.y]; ...]; ...] +add : Overload[Fn[I64; I64.x; I64.y]; Fn[F64; F64.x; F64.y]; ...] `log add `sync (1; 2) // Valid calls first `log add `sync (1.1; 2.2) // Valid calls second -- cgit v1.2.3