From b64c8846b4c7395acae36ad6beb97b1b845f0c7a Mon Sep 17 00:00:00 2001 From: batrick Date: Fri, 20 Jun 2008 16:20:18 +0000 Subject: [PATCH] Made small aesthetic changes to mutex documentation. --- docs/scripting.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/scripting.xml b/docs/scripting.xml index 540c0adf1..4291b0c73 100644 --- a/docs/scripting.xml +++ b/docs/scripting.xml @@ -2715,7 +2715,7 @@ error_message describes the occurred error. - + mutex @@ -2759,7 +2759,7 @@ error_message describes the occurred error. "running"—Returns the thread locked - on the mutex or nil. This + on the mutex or nil. This should only be used for debugging as it interferes with finished threads from being collected. @@ -2777,7 +2777,7 @@ local mutex = nmap.mutex(id); function action(host, port) mutex "lock"; -- do stuff - mutex"done"; + mutex "done"; return script_output; end