From baf6b176e1d69eac7fb1562c46dfa61670a81477 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Tue, 7 Oct 2025 09:22:49 -0700 Subject: Fix the name of the variable --- wordlist.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'wordlist.go') diff --git a/wordlist.go b/wordlist.go index a8b0ae8..5eb718c 100644 --- a/wordlist.go +++ b/wordlist.go @@ -9,5 +9,5 @@ import ( //go:embed wordlist.txt var wordListString string -// WordList is a list of 8192 words. -var WordList = strings.Split(strings.TrimSuffix(wordListString, "\n"), "\n") +// Words is a list of 8192 words. +var Words = strings.Split(strings.TrimSuffix(wordListString, "\n"), "\n") -- cgit v1.3.1