Unverified Commit 692bfd1b authored by Péter Szilágyi's avatar Péter Szilágyi Committed by GitHub

Merge pull request #25206 from dbadoy/master

common/prque: fix typo
parents 5e252282 a1cb7282
...@@ -163,7 +163,7 @@ func (q *LazyQueue) PopItem() interface{} { ...@@ -163,7 +163,7 @@ func (q *LazyQueue) PopItem() interface{} {
return i return i
} }
// Remove removes removes the item with the given index. // Remove removes the item with the given index.
func (q *LazyQueue) Remove(index int) interface{} { func (q *LazyQueue) Remove(index int) interface{} {
if index < 0 { if index < 0 {
return nil return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment