From 40978ba54a169a086f8caad878b1694bd9e683eb Mon Sep 17 00:00:00 2001 From: animesh Date: Fri, 25 Mar 2022 21:50:31 +0530 Subject: [PATCH] Edit comment wordlist go (#528) * Edited a comment * Added my github to contributors file * edited contributors.md file to sort my name Co-authored-by: Animesh Kumar --- CONTRIBUTORS.md | 1 + pkg/input/wordlist.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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) }