Merge pull request #498 from seeplusplus/main

fix(arc1): index mod should equal thread count
This commit is contained in:
fmoko 2020-08-17 12:48:41 +02:00 committed by GitHub
commit 66ec916b3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ fn main() {
let mut sum = 0;
while i < child_numbers.len() {
sum += child_numbers[i];
i += 5;
i += 8;
}
println!("Sum of offset {} is {}", offset, sum);
}));