Skip to content

Commit

Permalink
fixes : Updated MonogDB > Collection and Methods > Validate (#5466)
Browse files Browse the repository at this point in the history
removed `background` from Mongodb snippet.
  • Loading branch information
belikedeep committed May 9, 2024
1 parent dfa91cd commit ec31ad3
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -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
Expand Down

0 comments on commit ec31ad3

Please sign in to comment.