range 버그 수정

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