From 28fcf33cdada7472c0501716bebb9a87f89da2e3 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Tue, 25 Jan 2022 20:09:17 +0300 Subject: [PATCH] mdbx-doc: fix/refine `MDBX_dbi` description. --- mdbx.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/mdbx.h b/mdbx.h index 9cb6c25c..90be7466 100644 --- a/mdbx.h +++ b/mdbx.h @@ -699,9 +699,12 @@ struct MDBX_txn; #endif /** \brief A handle for an individual database (key-value spaces) in the - * environment. \ingroup c_dbi \details Zero handle is used internally (hidden - * Garbage Collection DB). So, any valid DBI-handle great than 0 and less than - * or equal \ref MDBX_MAX_DBI. \see mdbx_dbi_open() \see mdbx_dbi_close() */ + * environment. + * \ingroup c_dbi + * \details Zero handle is used internally (hidden Garbage Collection subDB). + * So, any valid DBI-handle great than 0 and less than or equal + * \ref MDBX_MAX_DBI. + * \see mdbx_dbi_open() \see mdbx_dbi_close() */ typedef uint32_t MDBX_dbi; /** \brief Opaque structure for navigating through a database