mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-19 06:19:27 +00:00
common/prque: fix typo
This commit is contained in:
parent
5e252282c0
commit
a1cb7282b0
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue