1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix some typos

This commit is contained in:
dmiller
2014-08-23 21:35:32 +00:00
parent c633079123
commit 1a1dc0e47a
4 changed files with 8 additions and 8 deletions

View File

@@ -450,11 +450,11 @@ URL = {
return false
end,
-- Get's the host portion of the URL
-- Gets the host portion of the URL
-- @return host string containing the hostname
getHost = function(self) return self.host end,
-- Get's the protocol representation of the URL
-- Gets the protocol representation of the URL
-- @return proto string containing the protocol (ie. http, https)
getProto = function(self) return self.proto end,
@@ -695,13 +695,13 @@ Crawler = {
return o
end,
-- Set's the timeout used by the http library
-- Sets the timeout used by the http library
-- @param timeout number containing the timeout in ms.
set_timeout = function(self, timeout)
self.options.timeout = timeout
end,
-- Get's the amount of pages that has been retrieved
-- Gets the amount of pages that has been retrieved
-- @return count number of pages retrieved by the instance
getPageCount = function(self)
local count = 1

View File

@@ -138,7 +138,7 @@ MobileMe = {
return true, parsed_json
end,
-- Get's a list of devices
-- Gets a list of devices
-- @return devices table containing a list of devices
getDevices = function(self)
if ( not(self.devices) ) then
@@ -166,7 +166,7 @@ Helper = {
return o
end,
-- Get's the geolocation from each device
-- Gets the geolocation from each device
--
-- @return status true on success, false on failure
-- @return result table containing a table of device locations

View File

@@ -323,7 +323,7 @@ Helper = {
return self.comm:connect()
end,
-- Get's the external public IP
-- Gets the external public IP
-- @return status true on success, false on failure
-- @return result containing the IP as string
getExternalAddress = function(self)

View File

@@ -169,7 +169,7 @@ Versant = {
end,
-- Get's the XML license file from the database
-- Gets the XML license file from the database
-- @return status true on success, false on failure
-- @return data string containing the XML license file
getLicense = function(self)