Improved comment on hash algorithm.

This commit is contained in:
Karl Waclawek 2003-09-22 14:14:54 +00:00
parent b28869898a
commit ecceec27f2

View File

@ -109,7 +109,8 @@ typedef struct {
} HASH_TABLE;
/* Basic character hash algorithm, taken from Python's string hash:
h = h * 1000003(prime number) ^ character.
h = h * 1000003 ^ character, the constant being a prime number.
*/
#ifdef XML_UNICODE
#define CHAR_HASH(h, c) \