summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/README.md
diff options
context:
space:
mode:
authorXiangyu Yao <xiangyu.yao@mongodb.com>2019-06-20 12:28:04 -0400
committerXiangyu Yao <xiangyu.yao@mongodb.com>2019-06-20 12:28:04 -0400
commitb4f508babb7c3e31c101e62e4411f12476e9c6d8 (patch)
tree8b1bcb451eae2ddeaee21432a444658412ba2c3d /src/mongo/db/storage/README.md
parenteee4bc704dde28d388a100f5d7fe2d54114cd48a (diff)
downloadmongo-b4f508babb7c3e31c101e62e4411f12476e9c6d8.tar.gz
SERVER-40478 Merge StorageEngine class with KVStorageEngine
Diffstat (limited to 'src/mongo/db/storage/README.md')
-rw-r--r--src/mongo/db/storage/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/storage/README.md b/src/mongo/db/storage/README.md
index 37699575ded..17d1af8f2e0 100644
--- a/src/mongo/db/storage/README.md
+++ b/src/mongo/db/storage/README.md
@@ -28,7 +28,7 @@ Concepts
A database contains one or more collections, each with a number of indexes, and a catalog listing
them. All MongoDB collections are implemented with record stores: one for the documents themselves,
and one for each index. By using the KVEngine class, you only have to deal with the abstraction, as
-the KVStorageEngine implements the StorageEngine interface, using record stores for catalogs and
+the StorageEngineImpl implements the StorageEngine interface, using record stores for catalogs and
indexes.
#### Record Identities