From b8383a467bdad0f8b10f79ac00520804e3836b3b Mon Sep 17 00:00:00 2001 From: Joshua Suskalo Date: Thu, 7 Jul 2022 11:11:13 -0500 Subject: [PATCH] Correct docstring of downcall-handle --- src/clj/coffi/ffi.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/coffi/ffi.clj b/src/clj/coffi/ffi.clj index 6bcc5b9..697e6c3 100644 --- a/src/clj/coffi/ffi.clj +++ b/src/clj/coffi/ffi.clj @@ -52,7 +52,7 @@ args-arr))))) (defn- downcall-handle - "Gets the [[MethodHandle]] for the function at the `address`." + "Gets the [[MethodHandle]] for the function at the `sym`." [sym function-descriptor] (.downcallHandle (CLinker/systemCLinker) sym function-descriptor))