From aa58218da7a3ce3587a768f85323c3ce2212f6b2 Mon Sep 17 00:00:00 2001 From: nodist Date: Fri, 22 May 2026 13:13:47 -0400 Subject: add operators for bit type --- docs/type_system/overload.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/type_system/overload.md') diff --git a/docs/type_system/overload.md b/docs/type_system/overload.md index dff2327..116ce0e 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 `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 +`log add `call (1; 2) // Valid calls first +`log add `call (1.1; 2.2) // Valid calls second +`log add `call (1; 2.2) // Invalid no signature match ``` -- cgit v1.2.3