diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 83c6ae6..6a15f06 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -34,6 +34,7 @@ * [nnwakelam](https://twitter.com/nnwakelam) * [noraj](https://pwn.by/noraj) * [oh6hay](https://github.com/oh6hay) +* [penguinxoxo](https://github.com/penguinxoxo) * [putsi](https://github.com/putsi) * [SakiiR](https://github.com/SakiiR) * [seblw](https://github.com/seblw) diff --git a/pkg/input/wordlist.go b/pkg/input/wordlist.go index 7fc297e..1bc8b42 100644 --- a/pkg/input/wordlist.go +++ b/pkg/input/wordlist.go @@ -55,7 +55,7 @@ func (w *WordlistInput) Keyword() string { return w.keyword } -//Next will increment the cursor position, and return a boolean telling if there's words left in the list +//Next will return a boolean telling if there's words left in the list func (w *WordlistInput) Next() bool { return w.position < len(w.data) }