Small correction to README file.

This commit is contained in:
LoRd_MuldeR 2022-11-29 17:35:03 +01:00
parent c016cd0af3
commit dfce864f16

View File

@ -400,15 +400,15 @@ errno_t hash_set_dump(
* `instance`
A pointer to the hash set instance to be examined, as returned by the [hash_set_create()](#hash_set_create) function.
* `capacity`
A pointer to the callback function that will be invoked once for every "slot" of the hash set.
* `callback`
A pointer to the callback function that will be invoked once for every "slot" in the hash set.
```C
int callback(
const size_t index,
const char status,
const value_t value
);
int callback(
const size_t index,
const char status,
const value_t value
);
```
##### Parameters