From 659fbb3df7e3875906af74e76968f09dd846dc76 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Tue, 24 Nov 2020 07:50:49 +0300 Subject: [PATCH] mdbx-doc: fix `MDBX_INTEGERDUP` description. Resolve https://github.com/erthink/libmdbx/issues/140 Change-Id: Ifb24cbbc9cba7d0c09da8e99e6d87412d151d093 --- mdbx.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mdbx.h b/mdbx.h index 39f304f2..966cf2e7 100644 --- a/mdbx.h +++ b/mdbx.h @@ -1347,9 +1347,9 @@ enum MDBX_db_flags_t { /** With \ref MDBX_DUPSORT; sorted dup items have fixed size */ MDBX_DUPFIXED = UINT32_C(0x10), - /** With \ref MDBX_DUPSORT; dups are \ref MDBX_INTEGERKEY -style integers. The - * data values must all be of the same size and must be aligned while passing - * as arguments. */ + /** With \ref MDBX_DUPSORT and with \ref MDBX_DUPFIXED; dups are fixed size + * \ref MDBX_INTEGERKEY -style integers. The data values must all be of the + * same size and must be aligned while passing as arguments. */ MDBX_INTEGERDUP = UINT32_C(0x20), /** With \ref MDBX_DUPSORT; use reverse string comparison */