Skip to content

Commit

Permalink
📚doc: update 'coverage.html'
Browse files Browse the repository at this point in the history
  • Loading branch information
yanosea committed Oct 10, 2024
1 parent 8aad9f9 commit 3f59211
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/coverage.html
Original file line number Diff line number Diff line change
Expand Up @@ -1670,19 +1670,19 @@
argSuffix = ""</span>
case WithPrefix:<span class="cov8" title="1">
// get random number for suffix
randomIndexSuffix := g.RandProxy.Intn(len(allAVWords))
randomIndexSuffix := g.RandProxy.Intn(len(allNWords))
// get random prefix word
randomSuffix := allAVWords[randomIndexSuffix]
randomSuffix := allNWords[randomIndexSuffix]
// set prefix word and suffix word
prefixWord = argPrefix
suffixWord = randomSuffix.Lemma.FieldNullString.String
// set argSuffix to empty string
argSuffix = ""</span>
case WithSuffix:<span class="cov8" title="1">
// get random number for argPrefix
randomIndexPrefix := g.RandProxy.Intn(len(allNWords))
randomIndexPrefix := g.RandProxy.Intn(len(allAVWords))
// get random prefix word
randomPrefix := allNWords[randomIndexPrefix]
randomPrefix := allAVWords[randomIndexPrefix]
// set prefix word and suffix word
prefixWord = randomPrefix.Lemma.FieldNullString.String
suffixWord = argSuffix
Expand Down

0 comments on commit 3f59211

Please sign in to comment.