diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-19 15:45:45 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-19 15:45:45 -0400 |
| commit | dcf57ffd19ee65c46e9ee635ca6f8238b8f1f07f (patch) | |
| tree | dbede69014883640ae317e305877b714ec7bf98e /docs/type_system/overload.md | |
| parent | 3593ab47e110f7d3b5ef9da7c155bab8e4979236 (diff) | |
use sync and async for calling
Diffstat (limited to 'docs/type_system/overload.md')
| -rw-r--r-- | docs/type_system/overload.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/type_system/overload.md b/docs/type_system/overload.md index c446701..dff2327 100644 --- a/docs/type_system/overload.md +++ b/docs/type_system/overload.md @@ -13,7 +13,7 @@ Overload[FN; ...] ```text add : Overload[Fn[.native; I64; Tuple[I64.x; I64.y]; ...]; Fn[.native; F64; Tuple[F64.x; F64.y]; ...]; ...] -`log add `call_sync (1; 2) // Valid calls first -`log add `call_sync (1.1; 2.2) // Valid calls second -`log add `call_sync (1; 2.2) // Invalid no signature match +`log add `sync (1; 2) // Valid calls first +`log add `sync (1.1; 2.2) // Valid calls second +`log add `sync (1; 2.2) // Invalid no signature match ``` |
