From 39cdd05864a9f6fe2433c8504f9fe82a69930b23 Mon Sep 17 00:00:00 2001 From: dmiller Date: Thu, 28 Nov 2013 23:26:11 +0000 Subject: [PATCH] Use @param luadoc for stdnse.pretty_printer, not @args --- nselib/stdnse.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nselib/stdnse.lua b/nselib/stdnse.lua index 5742ead5b..b5d80d660 100644 --- a/nselib/stdnse.lua +++ b/nselib/stdnse.lua @@ -1170,8 +1170,8 @@ end -- printer function. The printer function takes a sole string -- argument and will be called repeatedly. -- --- @args obj The object to pretty print. --- @args printer The printer function. +-- @param obj The object to pretty print. +-- @param printer The printer function. function pretty_printer (obj, printer) if printer == nil then printer = print end