Skip to content

Commit bc121d3

Browse files
committed
lru: fix mismatched names in comments (ethereum#29348)
1 parent 6f1d1b6 commit bc121d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/lru/basiclru.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ func (l *list[T]) init() {
174174
l.root.prev = &l.root
175175
}
176176

177-
// push adds an element to the front of the list.
177+
// pushElem adds an element to the front of the list.
178178
func (l *list[T]) pushElem(e *listElem[T]) {
179179
e.prev = &l.root
180180
e.next = l.root.next

0 commit comments

Comments
 (0)