From 4404ce2675715ac5e5138ba8092e4092030d8668 Mon Sep 17 00:00:00 2001 From: Daijiro Wachi Date: Wed, 17 Jun 2026 19:00:16 +0900 Subject: [PATCH] doc: fix Fast FFI argument count in ffi.md Signed-off-by: Daijiro Wachi --- doc/api/ffi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/ffi.md b/doc/api/ffi.md index 4deef4accad375..1ec30f593d00bb 100644 --- a/doc/api/ffi.md +++ b/doc/api/ffi.md @@ -126,7 +126,7 @@ strings, `Buffer`, typed array, `DataView`, and `ArrayBuffer` values are converted on the JavaScript side before calling the optimized native wrapper. Optimized Fast FFI calls support at most 8 function arguments. Functions with -more than 7 arguments use the generic FFI call path instead. +more than 8 arguments use the generic FFI call path instead. ## Signature objects