From 91a714ac6eae131bae99339ccb632b6b96286773 Mon Sep 17 00:00:00 2001 From: LoRd_MuldeR Date: Sat, 3 Dec 2022 22:55:40 +0100 Subject: [PATCH] Updated README file. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3a48226..71d0894 100644 --- a/README.md +++ b/README.md @@ -126,7 +126,7 @@ Allocates a new hash set instance. The new hash set instance is empty initially. hash_set_t *hash_set_create( const size_t initial_capacity, const double load_factor, - const uint32_t seed + const uint64_t seed ); ``` @@ -473,7 +473,7 @@ Allocates a new hash map instance. The new hash map instance is empty initially. hash_map_t *hash_map_create( const size_t initial_capacity, const double load_factor, - const uint32_t seed + const uint64_t seed ); ```