aboutsummaryrefslogtreecommitdiff
path: root/weed/util
diff options
context:
space:
mode:
authorclonefetch <166312854+clonefetch@users.noreply.github.com>2024-04-08 22:19:02 +0800
committerGitHub <noreply@github.com>2024-04-08 07:19:02 -0700
commit9e07a87fcba5e6b0986cd2dad1fa3d644ff4edc7 (patch)
tree842bb06734049b0188f1ebfe9cd9dbd506a0b62d /weed/util
parent3e25ed1b11ce734bb5f2f9faddfe4b9ca16270c9 (diff)
downloadseaweedfs-9e07a87fcba5e6b0986cd2dad1fa3d644ff4edc7.tar.xz
seaweedfs-9e07a87fcba5e6b0986cd2dad1fa3d644ff4edc7.zip
chore: fix function names in comment (#5478)
Diffstat (limited to 'weed/util')
-rw-r--r--weed/util/skiplist/skiplist.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/util/skiplist/skiplist.go b/weed/util/skiplist/skiplist.go
index 21eed4b43..befb0389c 100644
--- a/weed/util/skiplist/skiplist.go
+++ b/weed/util/skiplist/skiplist.go
@@ -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 {