Fix incorrect BitUtil.deinterleave() description

Signed-off-by: Adrien Grand <jpountz@gmail.com>

Closes #367
This commit is contained in:
Yuri Astrakhan 2018-04-30 02:08:13 +03:00 committed by Adrien Grand
parent 1971ef3109
commit d039730638
1 changed files with 1 additions and 1 deletions

View File

@ -134,7 +134,7 @@ public final class BitUtil {
}
/**
* Deinterleaves long value back to two concatenated 32bit values
* Extract just the even-bits value as a long from the bit-interleaved value
*/
public static long deinterleave(long b) {
b &= MAGIC[0];