dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

commit bfceb4fdd070f7b57889f0a01b856745aa25337c
parent 9ba63c78ac809dc448b9cd20f84018bfcfd6cef7
Author: n0tr1v <n0tr1v@protonmail.com>
Date:   Wed, 14 Dec 2022 22:09:50 -0500

simpler

Diffstat:
Mcmd/art/main.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmd/art/main.go b/cmd/art/main.go @@ -154,7 +154,7 @@ func getNextClassName(in []rune) (out []rune) { func getClassName(idx int) string { out := []rune{firstRune} - for counter := idx; counter > 0; counter-- { + for counter := 0; counter < idx; counter++ { out = getNextClassName(out) } return string(out)