1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-06 14:39:03 +00:00

Brief copyediting of NSEDoc for modules.

This commit is contained in:
david
2010-07-12 19:42:43 +00:00
parent d95ee8c15f
commit 7d0c08a097
45 changed files with 247 additions and 290 deletions

View File

@@ -1,13 +1,14 @@
--- Strict Declared Global library.
---
-- Strict declared global library. Checks for undeclared global variables
-- during runtime execution.
--
-- Checks for undeclared global variables during runtime execution. This module
-- places the 'strict' function in the global environment. The strict function
-- allows a script to add runtime checking so that undeclared globals cause
-- an error to be raised. This is useful for finding accidental use of globals
-- when local was intended.
-- This module places the <code>strict</code> function in the global
-- environment. The strict function allows a script to add runtime checking so
-- that undeclared globals cause an error to be raised. This is useful for
-- finding accidental use of globals when local was intended.
--
-- A global variable is considered 'declared' if the script makes an assignment
-- to the global name (even nil) in the file scope.
-- A global variable is considered "declared" if the script makes an assignment
-- to the global name (even <code>nil</code>) in the file scope.
--
-- @class module
-- @name strict