mdbx-doc: minor refine mdbx_env_set_geometry() description.

This commit is contained in:
Leonid Yuriev 2022-01-21 11:44:05 +03:00
parent cd2c5f594c
commit 75b23524bd

6
mdbx.h
View File

@ -2840,8 +2840,10 @@ LIBMDBX_API int mdbx_env_get_fd(const MDBX_env *env, mdbx_filehandle_t *fd);
* or use default". Default is 2*growth_step.
*
* \param [in] pagesize The database page size for new database
* creation or -1 otherwise. Must be power of 2
* in the range between \ref MDBX_MIN_PAGESIZE and
* creation or -1 otherwise. Once the database
* is created, the page size cannot be changed.
* Must be power of 2 in the range between
* \ref MDBX_MIN_PAGESIZE and
* \ref MDBX_MAX_PAGESIZE. Zero value means
* "minimal acceptable", and negative means
* "keep current or use default".