mirror of
https://github.com/nmap/nmap.git
synced 2026-09-01 16:02:01 +00:00
Resolves parameter name mismatch between code and embedded documentation, which was causing generated documentation to depict two parameters in each function
This commit is contained in:
parent
0f69f30ea4
commit
88b68c45aa
1 changed files with 2 additions and 2 deletions
|
|
@ -58,7 +58,7 @@ local b64table = {
|
|||
|
||||
---
|
||||
-- Encodes a string to Base64.
|
||||
-- @param bdata Data to be encoded.
|
||||
-- @param p Data to be encoded.
|
||||
-- @return Base64-encoded string.
|
||||
function enc (p)
|
||||
local out = {}
|
||||
|
|
@ -106,7 +106,7 @@ end
|
|||
|
||||
---
|
||||
-- Decodes Base64-encoded data.
|
||||
-- @param b64data Base64 encoded data.
|
||||
-- @param e Base64 encoded data.
|
||||
-- @return Decoded data.
|
||||
function dec (e)
|
||||
local out = {}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue