From 2ef5f2c412deb62f3f41593a0cc679b2436bb2a3 Mon Sep 17 00:00:00 2001 From: rgkirch <6143833+rgkirch@users.noreply.github.com> Date: Wed, 20 Oct 2021 19:38:49 -0400 Subject: [PATCH] Update Callback.java --- src/com/sun/jna/Callback.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/sun/jna/Callback.java b/src/com/sun/jna/Callback.java index 4b756b93e9..b6bf764f19 100644 --- a/src/com/sun/jna/Callback.java +++ b/src/com/sun/jna/Callback.java @@ -49,7 +49,7 @@ interface UncaughtExceptionHandler { */ void uncaughtException(Callback c, Throwable e); } - /** You must this method name if your callback interface has multiple + /** You must use this method name if your callback interface has multiple public methods. Typically a callback will have only one such method, in which case any method name may be used, with the exception of those in {@link #FORBIDDEN_NAMES}.