Fixed comment

This commit is contained in:
Oleksandr Melnyk 2020-03-09 14:35:58 +02:00
parent b7662afc70
commit 1cca54789c

View File

@ -111,7 +111,7 @@
if (ptr <= end - 4) if (ptr <= end - 4)
{ {
h64 ^= *((uint*)ptr) * p1; h64 ^= *((uint*)ptr) * p1;
h64 = BitUtils.RotateLeft(h64, 23) * p2 + p3; // (rotl 27) * p2 + p3 h64 = BitUtils.RotateLeft(h64, 23) * p2 + p3; // (rotl 23) * p2 + p3
ptr += 4; ptr += 4;
} }