diff --git a/src/data/roadmaps/mongodb/content/102-collections/106-validate.md b/src/data/roadmaps/mongodb/content/102-collections/106-validate.md index d8c759596..5c6bb9dfa 100644 --- a/src/data/roadmaps/mongodb/content/102-collections/106-validate.md +++ b/src/data/roadmaps/mongodb/content/102-collections/106-validate.md @@ -26,10 +26,10 @@ Validate a collection named "products": db.runCommand({ validate: 'products' }); ``` -Validate the collection and perform a background and full check: +Validate the collection and perform a full check: ```javascript -db.runCommand({ validate: 'products', background: true, full: true }); +db.runCommand({ validate: 'products', full: true }); ``` ## Output