1
4
mirror of https://github.com/yunginnanet/HellPot synced 2024-06-25 15:28:01 +00:00

Docs: Fix misspelling

This commit is contained in:
Carl Johnson 2016-12-11 19:21:35 -05:00
parent eb56cf869e
commit 88333d7b52

@ -87,7 +87,7 @@ func (mm MarkovMap) Add(w1, w2, w3 string) {
mm[p] = append(mm[p], w3)
}
// Get psuedo-randomly chooses a possible suffix to w1 and w2.
// Get pseudo-randomly chooses a possible suffix to w1 and w2.
func (mm MarkovMap) Get(w1, w2 string) string {
p := tokenPair{w1, w2}
suffix, ok := mm[p]