Skip to content

Commit

Permalink
FIX 1c29105 changed QMap API
Browse files Browse the repository at this point in the history
  • Loading branch information
wkhere committed Jan 12, 2022
1 parent 597db2f commit e66f749
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qmap_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func qmapExample() []Node {
q.Add(node("foo"), 10)
q.Add(node("five"), 5)
q.Add(node("five2"), 5)
item, _ := q.Item(node("foo"))
item, _ := q.Get(node("foo"))
q.Update(item, 3)
q.Add(node("two"), 2)
res := make([]Node, 0, 4)
Expand Down

0 comments on commit e66f749

Please sign in to comment.