corpus is already in lowercase

This commit is contained in:
Firas Khalil Khana
2021-05-01 13:21:55 +03:00
committed by İnanç Gümüş
parent 6b4a20f2e3
commit 6c1c2a5b94

View File

@ -27,7 +27,7 @@ func main() {
"and", "or", "was", "the", "since", "very", "and", "or", "was", "the", "since", "very",
} }
words := strings.Fields(strings.ToLower(corpus)) words := strings.Fields(corpus)
queries: queries:
for _, q := range query { for _, q := range query {