From e1dfbf25b8d8f25e4b3a04b57e9a6b5fcad5d532 Mon Sep 17 00:00:00 2001 From: Paul Olteanu <170131110+cmpwi@users.noreply.github.com> Date: Tue, 30 Jun 2026 09:55:47 -0400 Subject: [PATCH] Clarify behaviour of class_getMethodImplementation() --- objc/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/objc/runtime.h b/objc/runtime.h index c9a0ba63..56bbbb80 100644 --- a/objc/runtime.h +++ b/objc/runtime.h @@ -370,7 +370,7 @@ Ivar object_getInstanceVariable(id obj, const char *name, void **outValue); /** * Returns a pointer to the function used to handle the specified message. If * the receiver does not have a method corresponding to this message then this - * function may return a runtime function that performs forwarding. + * function returns the result of calling __objc_msg_forward2(nil, name). */ OBJC_PUBLIC IMP class_getMethodImplementation(Class cls, SEL name);