diff options
| author | clonefetch <166312854+clonefetch@users.noreply.github.com> | 2024-04-08 22:19:02 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-08 07:19:02 -0700 |
| commit | 9e07a87fcba5e6b0986cd2dad1fa3d644ff4edc7 (patch) | |
| tree | 842bb06734049b0188f1ebfe9cd9dbd506a0b62d /weed/util | |
| parent | 3e25ed1b11ce734bb5f2f9faddfe4b9ca16270c9 (diff) | |
| download | seaweedfs-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.go | 2 |
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 { |
