Update prque.go

This commit is contained in:
Felix Lange 2024-04-06 11:09:05 +02:00 committed by GitHub
parent af8b972d5e
commit 4a783ffcd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -22,7 +22,7 @@ import (
"container/heap" "container/heap"
) )
// Prque priority queue data structure. // Prque is a priority queue data structure.
type Prque[P cmp.Ordered, V any] struct { type Prque[P cmp.Ordered, V any] struct {
cont *sstack[P, V] cont *sstack[P, V]
} }