diff --git a/lmdb.h b/lmdb.h index 049bc0a3..0a0a5b0e 100644 --- a/lmdb.h +++ b/lmdb.h @@ -526,8 +526,8 @@ int mdb_env_create(MDB_env **env); * and uses fewer mallocs, but loses protection from application bugs * like wild pointer writes and other bad updates into the database. * Incompatible with nested transactions. - * Processes with and without MDB_WRITEMAP on the same environment do - * not cooperate well. + * Do not mix processes with and without MDB_WRITEMAP on the same + * environment. This can defeat durability (#mdb_env_sync etc). *