MrSplidge

Results 1 issues of MrSplidge

In `go-xmldom/node.go` (master branch), function `PrevSibling()`, there's: ``` if i >= 0 { return n.Parent.Children[i-1] } ``` The `>=` should probably be `>`.