From 5d422750fa7d2b7f4b70dc8a58e1426bc5557c20 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Tue, 11 Sep 2012 09:42:08 -0700 Subject: [PATCH] Correct a simple typo in a thrown exception message. --- Execute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Execute.cpp b/Execute.cpp index 8c9a48f..f8b70e5 100644 --- a/Execute.cpp +++ b/Execute.cpp @@ -1019,7 +1019,7 @@ static void All_getPropertyNames(JSContextRef context, JSObjectRef object, JSPro static JSObjectRef Pointer_new(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { if (count != 2) - throw CYJSError(context, "incorrect number of arguments to Functor constructor"); + throw CYJSError(context, "incorrect number of arguments to Pointer constructor"); CYPool pool; -- 2.49.0