treeprint
treeprint copied to clipboard
Wrong call to recursive fn in FindByValue()
https://github.com/xlab/treeprint/blob/d235141453da96e0dea798a1ac83b0847159e622/treeprint.go#L118
I think it should be -
if v := node.FindByValue(value); v != nil {
return v
}
Is it fixed?