From 2cd195ea51fcb760cd4d7637fc70aa7cbd517ea5 Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Sun, 29 Mar 2020 01:11:58 +0000 Subject: [PATCH] Fix version number in js.exec() documentation: This method was added in v3.17c not v3.16. --- src/sbbs3/js_internal.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sbbs3/js_internal.c b/src/sbbs3/js_internal.c index 9e0c8ae75c..bd4d599cb8 100644 --- a/src/sbbs3/js_internal.c +++ b/src/sbbs3/js_internal.c @@ -717,9 +717,9 @@ static jsSyncMethodSpec js_functions[] = { ,JSDOCSTR("Executes a script optionally with a custom scope. The main difference between this " "and load() is that scripts called this way can call exit() without terminating the caller. If it does, any " "on_exit() handlers will be evaluated in scripts scope when the script exists. " - "NOTE: To get a child of the current scope, you need to create an object in the current scope " - "an anonymous object can be created using 'new function(){}'.") - ,316 + "NOTE: To get a child of the current scope, you need to create an object in the current scope. " + "An anonymous object can be created using 'new function(){}'.") + ,31702 }, {0} }; -- GitLab