1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-15 02:49:02 +00:00

Fix a few one-character errors in scripting.xml.

This commit is contained in:
david
2008-11-09 14:59:43 +00:00
parent df4cda5161
commit 21ade2bae7

View File

@@ -1608,9 +1608,9 @@ try(socket:send(result))
The head of the script is essentially its meta information. This
includes the
fields:<literal>description</literal>, <literal>categories</literal>, <literal>runlevel</literal>, <literal>author</literal>, and <literal>license</literal> as well as
fields: <literal>description</literal>, <literal>categories</literal>, <literal>runlevel</literal>, <literal>author</literal>, and <literal>license</literal> as well as
initial NSEDoc information such as usage, args, and output
tags (see xref linkend="nsedoc"/>).
tags (see <xref linkend="nsedoc"/>).
</para>
<para>
@@ -2435,7 +2435,7 @@ The <function>mainloop</function> function then processes each runlevel grouping
running queue so it can resume operations when its turn comes up again.</para>
<para>
The <function>mainloop</function> function moves threads between the waiting and running queues as needed.
A thread which yields is moved from the running queu into the waiting list. Running threads execute until they either
A thread which yields is moved from the running queue into the waiting list. Running threads execute until they either
yield, complete, or fail with an error. Threads are made ready to run (placed in the running queue) by calling
<literal>process_waiting2running</literal>. This process of scheduling running
threads and moving threads between queues continues