You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.
There's a bug in the ensure root element function on line 598. You need to replace:
for (k=start+1; k<=i; k++){
with
for (k=start+1; k<i; k++){
I'm a bit out of sync with your codebase right now, so it seemed quicker to do it this way rather than do a commit.
The text was updated successfully, but these errors were encountered: