Fix typo in loaders.go (#311)

This commit is contained in:
Brendan Le Glaunec
2022-10-03 19:22:19 +02:00
committed by GitHub
parent d73878a1e1
commit 1b91e5441f
+1 -1
View File
@@ -116,7 +116,7 @@ func (s *Scanner) LoadTargets() error {
s.targets = strings.Split(string(bytes), "\n") s.targets = strings.Split(string(bytes), "\n")
s.term.Debugf("Successfylly parsed targets file with %d entries", len(s.targets)) s.term.Debugf("Successfully parsed targets file with %d entries", len(s.targets))
return nil return nil
} }