attractivechaos / klib

A standalone and lightweight C library
http://attractivechaos.github.io/klib/
MIT License
4.18k stars 556 forks source link

description for KHASH_SET_INIT_INT64(name) incorrectly says it instantiates a map #112

Closed bkerin closed 5 years ago

bkerin commented 5 years ago

Currently it looks like this:

/! @function @abstract Instantiate a hash map containing 64-bit integer keys @param name Name of the hash table [symbol] /

define KHASH_SET_INIT_INT64(name) \

    KHASH_INIT(name, khint64_t, char, 0, kh_int64_hash_func, kh_int64_hash_equal)

@abstract should read: "Instantiate a hash set containing 64 bit integer keys"

attractivechaos commented 5 years ago

Fixed.