aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/transport/hashtable.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/lib/transport/hashtable.c')
-rw-r--r--src/core/lib/transport/hashtable.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/transport/hashtable.c b/src/core/lib/transport/hashtable.c
index 89e2640969..3e0e0bd6c6 100644
--- a/src/core/lib/transport/hashtable.c
+++ b/src/core/lib/transport/hashtable.c
@@ -77,7 +77,7 @@ grpc_hash_table* grpc_hash_table_create(size_t num_entries,
grpc_hash_table* table = gpr_malloc(sizeof(*table));
memset(table, 0, sizeof(*table));
gpr_ref_init(&table->refs, 1);
- // Quadratic chaining gets best performance when the table is no more
+ // Quadratic probing gets best performance when the table is no more
// than half full.
table->num_entries = num_entries * 2;
const size_t entry_size = sizeof(grpc_hash_table_entry) * table->num_entries;