Commit 4e0a99ba authored by antirez's avatar antirez
Browse files

Comment typo in hllSparseAdd(). first -> fits.

parent 5532b530
...@@ -824,7 +824,7 @@ updated: ...@@ -824,7 +824,7 @@ updated:
continue; continue;
} }
/* We need two adjacent VAL opcodes to try a merge, having /* We need two adjacent VAL opcodes to try a merge, having
* the same value, and a len that first the VAL opcode max len. */ * the same value, and a len that fits the VAL opcode max len. */
if (p+1 < end && HLL_SPARSE_IS_VAL(p+1)) { if (p+1 < end && HLL_SPARSE_IS_VAL(p+1)) {
int v1 = HLL_SPARSE_VAL_VALUE(p); int v1 = HLL_SPARSE_VAL_VALUE(p);
int v2 = HLL_SPARSE_VAL_VALUE(p+1); int v2 = HLL_SPARSE_VAL_VALUE(p+1);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment