We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f1d1b6 commit bc121d3Copy full SHA for bc121d3
common/lru/basiclru.go
@@ -174,7 +174,7 @@ func (l *list[T]) init() {
174
l.root.prev = &l.root
175
}
176
177
-// push adds an element to the front of the list.
+// pushElem adds an element to the front of the list.
178
func (l *list[T]) pushElem(e *listElem[T]) {
179
e.prev = &l.root
180
e.next = l.root.next
0 commit comments