mdbx-doc: исправление опечатки в MDBX_ENV_JUST_DELETE (backport).

This commit is contained in:
Леонид Юрьев (Leonid Yuriev) 2024-03-22 00:28:03 +03:00
parent dfcd652e5c
commit 04f1200c3d
No known key found for this signature in database
GPG Key ID: 518BD10B927E8686

2
mdbx.h
View File

@ -2389,7 +2389,7 @@ enum MDBX_env_delete_mode_t {
/** \brief Just delete the environment's files and directory if any.
* \note On POSIX systems, processes already working with the database will
* continue to work without interference until it close the environment.
* \note On Windows, the behavior of `MDB_ENV_JUST_DELETE` is different
* \note On Windows, the behavior of `MDBX_ENV_JUST_DELETE` is different
* because the system does not support deleting files that are currently
* memory mapped. */
MDBX_ENV_JUST_DELETE = 0,