diff --git a/src/sbbs3/js_conio.c b/src/sbbs3/js_conio.c index 05cc63454615d9767f787723574fce8f821f5fe8..dbc06c4e3babb1c1554ab89b4ab9d93fccd1e49f 100644 --- a/src/sbbs3/js_conio.c +++ b/src/sbbs3/js_conio.c @@ -1045,7 +1045,7 @@ static jsSyncMethodSpec js_functions[] = { "<tr><td>\"SDL\"</td><td>Use the SDL library for output.</td></tr><tr><td>" "<tr><td>\"SDL_FULLSCREEN\"</td><td>Use the SDL library for output (fullscreen).</td></tr><tr><td>" "<tr><td>\"SDL_YUV\"</td><td>Use the SDL library for output using an overlay which allows hardware-based arbitrary scaling.</td></tr><tr><td>" - "<tr><td>\"SDL_YUV\"</td><td>Use the SDL library for output using an overlay which allows hardware-based arbitrary scaling (fullscreen).</td></tr><tr><td></table>" + "<tr><td>\"SDL_YUV_FULLSCREEN\"</td><td>Use the SDL library for output using an overlay which allows hardware-based arbitrary scaling (fullscreen).</td></tr><tr><td></table>" ),315 }, {"suspend", js_conio_suspend, 0 diff --git a/src/sbbs3/js_socket.c b/src/sbbs3/js_socket.c index 7451f445c1f5dde2c450c25808329edece86805f..8818404ba20b44058541334dad24a657d6906935 100644 --- a/src/sbbs3/js_socket.c +++ b/src/sbbs3/js_socket.c @@ -2860,7 +2860,7 @@ js_listening_socket_constructor(JSContext *cx, uintN argc, jsval *arglist) #ifdef BUILD_JSDOCS js_DescribeSyncObject(cx,obj,"Class used for incoming TCP/IP socket communications",317); js_DescribeSyncConstructor(cx,obj,"To create a new ListeningSocket object: " - "<tt>load('sockdefs.js'); var s = new ListeningSocket(<i>interface</i>, <i>port</i> ,<i>protocol</i>, {domain:<i>domain</i>, type:<i>type</i>, proto:<i>proto</i>, retry_count:<i>retry_count</i>, retry_delay:<i>retry_delay</i>)</tt><br>" + "<tt>load('sockdefs.js'); var s = new ListeningSocket(<i>interface</i>, <i>port</i> ,<i>protocol</i>, {domain:<i>domain</i>, type:<i>type</i>, proto:<i>proto</i>, retry_count:<i>retry_count</i>, retry_delay:<i>retry_delay</i>})</tt><br>" "where <i>interface</i> = A array or strings or a single string of hostnames or address optionally including a :port suffix<br>" "<i>port</i> = a port to use when the interface doesn't specify one<br>" "<i>protocol</i> = protocol name, used for socket options and logging.<br>"