summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/README.md
diff options
context:
space:
mode:
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