fixed linting error

This commit is contained in:
Annika Hannig 2024-01-16 14:27:09 +01:00
parent aa3fe6dd2c
commit 852d2d7a6d

View File

@ -1,5 +1,6 @@
package pools
// Node is a generic tree node
type Node[T comparable, V any] struct {
children map[T]*Node[T, V] // map of children
value V