comparison src/share/vm/libadt/dict.hpp @ 605:98cb887364d3

6810672: Comment typos Summary: I have collected some typos I have found while looking at the code. Reviewed-by: kvn, never
author twisti
date Fri, 27 Feb 2009 13:27:09 -0800
parents a61af66fc99e
children c18cbe5936b8
comparison
equal deleted inserted replaced
604:ec59443af135 605:98cb887364d3
84 void print(); 84 void print();
85 }; 85 };
86 86
87 // Hashing functions 87 // Hashing functions
88 int hashstr(const void *s); // Nice string hash 88 int hashstr(const void *s); // Nice string hash
89 // Slimey cheap hash function; no guarenteed performance. Better than the 89 // Slimey cheap hash function; no guaranteed performance. Better than the
90 // default for pointers, especially on MS-DOS machines. 90 // default for pointers, especially on MS-DOS machines.
91 int hashptr(const void *key); 91 int hashptr(const void *key);
92 // Slimey cheap hash function; no guarenteed performance. 92 // Slimey cheap hash function; no guaranteed performance.
93 int hashkey(const void *key); 93 int hashkey(const void *key);
94 94
95 // Key comparators 95 // Key comparators
96 int32 cmpstr(const void *k1, const void *k2); 96 int32 cmpstr(const void *k1, const void *k2);
97 // Slimey cheap key comparator. 97 // Slimey cheap key comparator.