From c63d78dbb17db95e25e6c801f004ef9007f21666 Mon Sep 17 00:00:00 2001 From: Nanosonde <2073569+nanosonde@users.noreply.github.com> Date: Mon, 6 Jul 2020 17:48:11 +0200 Subject: [PATCH] Correct comment --- src/knx/simple_map.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/knx/simple_map.h b/src/knx/simple_map.h index 895f9f3..ff8df24 100644 --- a/src/knx/simple_map.h +++ b/src/knx/simple_map.h @@ -1,6 +1,6 @@ #pragma once -// Provides a simple unordered map which is based on two arrays of the same data type. +// Provides a simple unordered map which is based on two arrays of different data types, namely K and V. // One array is used for the keys, the other array is used for the values. // Tracking of free/occupied slots in the arrays is realized by a bitmask of size uint64_t. // As a result the maximum size of the map is 64 entries.