mdbx-doc: fix MDBX_INTEGERDUP description.

Resolve https://github.com/erthink/libmdbx/issues/140

Change-Id: Ifb24cbbc9cba7d0c09da8e99e6d87412d151d093
This commit is contained in:
Leonid Yuriev 2020-11-24 07:50:49 +03:00
parent 23fd4444b5
commit 659fbb3df7

6
mdbx.h
View File

@ -1347,9 +1347,9 @@ enum MDBX_db_flags_t {
/** With \ref MDBX_DUPSORT; sorted dup items have fixed size */ /** With \ref MDBX_DUPSORT; sorted dup items have fixed size */
MDBX_DUPFIXED = UINT32_C(0x10), MDBX_DUPFIXED = UINT32_C(0x10),
/** With \ref MDBX_DUPSORT; dups are \ref MDBX_INTEGERKEY -style integers. The /** With \ref MDBX_DUPSORT and with \ref MDBX_DUPFIXED; dups are fixed size
* data values must all be of the same size and must be aligned while passing * \ref MDBX_INTEGERKEY -style integers. The data values must all be of the
* as arguments. */ * same size and must be aligned while passing as arguments. */
MDBX_INTEGERDUP = UINT32_C(0x20), MDBX_INTEGERDUP = UINT32_C(0x20),
/** With \ref MDBX_DUPSORT; use reverse string comparison */ /** With \ref MDBX_DUPSORT; use reverse string comparison */