From b1ffe87556f0e7b8ea0cefc283f64896a30dc5a9 Mon Sep 17 00:00:00 2001 From: Leo Yuriev Date: Wed, 13 Feb 2019 20:23:24 +0300 Subject: [PATCH] mdbx: fix one more comment typo (minor). --- mdbx.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mdbx.h b/mdbx.h index 9285b236..f698b340 100644 --- a/mdbx.h +++ b/mdbx.h @@ -591,7 +591,7 @@ LIBMDBX_API int mdbx_env_create(MDBX_env **penv); * - MDBX_NOTLS * Don't use Thread-Local Storage. Tie reader locktable slots to * MDBX_txn objects instead of to threads. I.e. mdbx_txn_reset() keeps - * the slot reseved for the MDBX_txn object. A thread may use parallel + * the slot reserved for the MDBX_txn object. A thread may use parallel * read-only transactions. A read-only transaction may span threads if * the user synchronizes its use. Applications that multiplex many * user threads over individual OS threads need this option. Such an