From febe7d01c87c317f6a76cdd87db6c886d9216c1d Mon Sep 17 00:00:00 2001 From: TheVice Date: Sat, 23 Jan 2021 21:09:44 +0200 Subject: [PATCH] [xxhash_spec.md] added missed semicolon at the pseudo-code. --- doc/xxhash_spec.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/xxhash_spec.md b/doc/xxhash_spec.md index cd593d4..af7ba90 100644 --- a/doc/xxhash_spec.md +++ b/doc/xxhash_spec.md @@ -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: