diff options
| author | Jason Evans <je@fb.com> | 2014-12-08 14:40:14 -0800 |
|---|---|---|
| committer | Jason Evans <je@fb.com> | 2014-12-08 16:34:04 -0800 |
| commit | e12eaf93dca308a426c182956197b0eeb5f2cff3 (patch) | |
| tree | 3b0ab8f083abdfcd145b16d092f3d50d1b6df373 /src/ckh.c | |
| parent | 59cd80e6c6e36c26a880e86f6cde9f71808b256c (diff) | |
| download | platform_external_jemalloc_new-e12eaf93dca308a426c182956197b0eeb5f2cff3.tar.gz platform_external_jemalloc_new-e12eaf93dca308a426c182956197b0eeb5f2cff3.tar.bz2 platform_external_jemalloc_new-e12eaf93dca308a426c182956197b0eeb5f2cff3.zip | |
Style and spelling fixes.
Diffstat (limited to 'src/ckh.c')
| -rw-r--r-- | src/ckh.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -367,10 +367,10 @@ ckh_new(tsd_t *tsd, ckh_t *ckh, size_t minitems, ckh_hash_t *hash, ckh->count = 0; /* - * Find the minimum power of 2 that is large enough to fit aBaseCount + * Find the minimum power of 2 that is large enough to fit minitems * entries. We are using (2+,2) cuckoo hashing, which has an expected * maximum load factor of at least ~0.86, so 0.75 is a conservative load - * factor that will typically allow 2^aLgMinItems to fit without ever + * factor that will typically allow mincells items to fit without ever * growing the table. */ assert(LG_CKH_BUCKET_CELLS > 0); |
