Skip to content

Commit

Permalink
up fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kiss291323003 committed May 11, 2020
1 parent a332efe commit 1a068fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Point.php
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public static function toString(Point $point,$depth = 0)

if($point->hasNextPoint()){
$string .= str_repeat("\t",$depth)."NextPoint:\n";
$string .= static::toString($point->hasNextPoint());
$string .= static::toString($point->hasNextPoint(),$depth+1);
}else{
$string .= str_repeat("\t",$depth)."NextPoint:None\n";
}
Expand Down

0 comments on commit 1a068fa

Please sign in to comment.