summaryrefslogtreecommitdiffstats
path: root/wordlist.go
diff options
context:
space:
mode:
authorRose Hogenson <rosehogenson@posteo.net>2025-10-07 09:22:49 -0700
committerRose Hogenson <rosehogenson@posteo.net>2025-10-07 09:22:49 -0700
commitbaf6b176e1d69eac7fb1562c46dfa61670a81477 (patch)
tree254a5d55103209183876b378a568e398330f67b7 /wordlist.go
parent9f4c30b1fcd23d2284c0971973225d7fc2ffd541 (diff)
downloadwordlist-go-baf6b176e1d69eac7fb1562c46dfa61670a81477.tar.zst
Fix the name of the variable
Diffstat (limited to 'wordlist.go')
-rw-r--r--wordlist.go4
1 files changed, 2 insertions, 2 deletions
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")