Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Amaototi committed Oct 19, 2023
1 parent 2c3e23a commit 2926348
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ func runMarkov(botID string) {

for i := 0; i < 10; i++ {
for _, note := range notes {
_data := markov.ParseToNode(note)
elems := markov.GetMarkovBlocks(_data)
data := markov.ParseToNode(note)
elems := markov.GetMarkovBlocks(data)
markovBlock = append(markovBlock, elems...)
}

Expand Down

0 comments on commit 2926348

Please sign in to comment.