diff options
| author | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-07 09:22:49 -0700 |
|---|---|---|
| committer | Rose Hogenson <rosehogenson@posteo.net> | 2025-10-07 09:22:49 -0700 |
| commit | baf6b176e1d69eac7fb1562c46dfa61670a81477 (patch) | |
| tree | 254a5d55103209183876b378a568e398330f67b7 | |
| parent | 9f4c30b1fcd23d2284c0971973225d7fc2ffd541 (diff) | |
| download | wordlist-go-baf6b176e1d69eac7fb1562c46dfa61670a81477.tar.zst | |
Fix the name of the variable
| -rw-r--r-- | wordlist.go | 4 |
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") |
