From 898b6ee4336314f1bc5611464181d4878b191776 Mon Sep 17 00:00:00 2001 From: Leonid Yuriev Date: Sun, 26 Jan 2020 15:27:08 +0300 Subject: [PATCH] mdbx: fix mdbx_env_copy() argument description. This resolves https://github.com/leo-yuriev/libmdbx/issues/78 Change-Id: I4d92f3939f617ffd11941793e819a0513649fed8 --- mdbx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdbx.h b/mdbx.h index 6170f6a8..5ebc563b 100644 --- a/mdbx.h +++ b/mdbx.h @@ -1605,8 +1605,8 @@ LIBMDBX_API int mdbx_env_open(MDBX_env *env, const char *pathname, * * [in] env An environment handle returned by mdbx_env_create(). It must * have already been opened successfully. - * [in] dest The directory in which the copy will reside. This directory - * must already exist and be writable but must otherwise be empty. + * [in] dest The pathname of a file in which the copy will reside. This file + * must not be already exist, but parent directory must be writable. * [in] flags Special options for this operation. This parameter must be set * to 0 or by bitwise OR'ing together one or more of the values * described here: