Skip to content
Snippets Groups Projects
Commit 2cd195ea authored by rswindell's avatar rswindell
Browse files

Fix version number in js.exec() documentation: This method was added in v3.17c

not v3.16.
parent 2eef62f9
No related branches found
No related tags found
No related merge requests found
...@@ -717,9 +717,9 @@ static jsSyncMethodSpec js_functions[] = { ...@@ -717,9 +717,9 @@ static jsSyncMethodSpec js_functions[] = {
,JSDOCSTR("Executes a script optionally with a custom scope. The main difference between this " ,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 " "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. " "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 " "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(){}'.") "An anonymous object can be created using 'new function(){}'.")
,316 ,31702
}, },
{0} {0}
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment