From 69bc79222ce8699861d7cf0a5f9488a8e4aacb14 Mon Sep 17 00:00:00 2001 From: kiokuless Date: Wed, 14 Feb 2024 18:42:45 +0900 Subject: [PATCH] fix typo --- optionsHostDiscovery.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/optionsHostDiscovery.go b/optionsHostDiscovery.go index bb0d690..d612e59 100644 --- a/optionsHostDiscovery.go +++ b/optionsHostDiscovery.go @@ -19,7 +19,7 @@ func WithPingScan() Option { } } -// WithSkipHostDiscovery diables host discovery and considers all hosts as online. +// WithSkipHostDiscovery disables host discovery and considers all hosts as online. func WithSkipHostDiscovery() Option { return func(s *Scanner) { s.args = append(s.args, "-Pn")