chore: fix function names in comment (#5478)

This commit is contained in:
clonefetch
2024-04-08 22:19:02 +08:00
committed by GitHub
parent 3e25ed1b11
commit 9e07a87fcb
5 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ type SkipList struct {
// elementCount int
}
// NewSeedEps returns a new empty, initialized Skiplist.
// NewSeed returns a new empty, initialized Skiplist.
// Given a seed, a deterministic height/list behaviour can be achieved.
// Eps is used to compare keys given by the ExtractKey() function on equality.
func NewSeed(seed int64, listStore ListStore) *SkipList {