Merge pull request #493 from TheVice/xxhash_spec.md

[xxhash_spec.md] add missed semicolon at the pseudo-code.
This commit is contained in:
Yann Collet 2021-01-23 23:01:02 -08:00 committed by GitHub
commit f2c52f1236
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -227,7 +227,7 @@ Note that accumulator convergence is more complex than 32-bit variant, and requi
mergeAccumulator(acc,accN):
acc = acc xor round(0, accN);
acc = acc * PRIME64_1
acc = acc * PRIME64_1;
return acc + PRIME64_4;
which is then used in the convergence formula: