range 버그 수정

This commit is contained in:
2020-04-21 01:21:10 +09:00
parent 03dffe1181
commit aaf7870d88
+1 -1
View File
@@ -782,7 +782,7 @@ class Util extends \utilphp\util
else{
while($from > $to){
yield $from;
$from -= $step;
$from += $step;
}
}
}