Update README.md (#94)

Add missing parenthesis to documentation
This commit is contained in:
Meir Blachman 2021-04-27 18:24:05 +03:00 committed by GitHub
parent 1333725f1f
commit c54b19ae4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -220,7 +220,7 @@ class Word {
} }
PayloadTrie<Word> trie = PayloadTrie.<Word>builder() PayloadTrie<Word> trie = PayloadTrie.<Word>builder()
.addKeyword("hers", new Word("f") .addKeyword("hers", new Word("f"))
.addKeyword("his", new Word("m")) .addKeyword("his", new Word("m"))
.addKeyword("she", new Word("f")) .addKeyword("she", new Word("f"))
.addKeyword("he", new Word("m")) .addKeyword("he", new Word("m"))