From 1a1dc0e47a9bc3fe5df33492fe8e3d6f8fd48e8a Mon Sep 17 00:00:00 2001 From: dmiller Date: Sat, 23 Aug 2014 21:35:32 +0000 Subject: [PATCH] Fix some typos --- nselib/httpspider.lua | 8 ++++---- nselib/mobileme.lua | 4 ++-- nselib/stun.lua | 2 +- nselib/versant.lua | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/nselib/httpspider.lua b/nselib/httpspider.lua index babe89adb..86040df50 100644 --- a/nselib/httpspider.lua +++ b/nselib/httpspider.lua @@ -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 diff --git a/nselib/mobileme.lua b/nselib/mobileme.lua index 2d7d3079e..4c6c8dd24 100644 --- a/nselib/mobileme.lua +++ b/nselib/mobileme.lua @@ -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 diff --git a/nselib/stun.lua b/nselib/stun.lua index 8c813a449..e95d7c83c 100644 --- a/nselib/stun.lua +++ b/nselib/stun.lua @@ -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) diff --git a/nselib/versant.lua b/nselib/versant.lua index 527e67223..c1626cf5c 100644 --- a/nselib/versant.lua +++ b/nselib/versant.lua @@ -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)