From 7a0c6c34a049aef0aa3e5ab2deebde7aad33d431 Mon Sep 17 00:00:00 2001 From: Chukwuemeka Ajah Date: Thu, 19 Dec 2024 15:43:29 +0000 Subject: [PATCH] Fix spelling so as to aid code understanding --- include/leveldb/env.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/leveldb/env.h b/include/leveldb/env.h index e00895a2bb..0cf57b9156 100644 --- a/include/leveldb/env.h +++ b/include/leveldb/env.h @@ -5,7 +5,7 @@ // An Env is an interface used by the leveldb implementation to access // operating system functionality like the filesystem etc. Callers // may wish to provide a custom Env object when opening a database to -// get fine gain control; e.g., to rate limit file system operations. +// get fine-grained control; e.g., to rate limit file system operations. // // All Env implementations are safe for concurrent access from // multiple threads without any external synchronization.