Fixed grammar: before H the article is a, not an.

This commit is contained in:
antirez
2013-12-05 16:35:32 +01:00
parent 74da4a574f
commit 11e81a1e9a
19 changed files with 32 additions and 32 deletions

View File

@ -891,7 +891,7 @@ robj *rdbLoadObject(int rdbtype, rio *rdb) {
o = createHashObject();
/* Too many entries? Use an hash table. */
/* Too many entries? Use a hash table. */
if (len > server.hash_max_ziplist_entries)
hashTypeConvert(o, REDIS_ENCODING_HT);