Merge pull request #3170 from KilianSorel/patch-1

Fix typo
This commit is contained in:
Ilya Kantor 2022-09-20 13:52:30 +02:00 committed by GitHub
commit 4b5ff839b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3,7 +3,7 @@ function* pseudoRandom(seed) {
let value = seed; let value = seed;
while(true) { while(true) {
value = value * 16807 % 2147483647 value = value * 16807 % 2147483647;
yield value; yield value;
} }