File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ await Model.create({ name: 'super secret' });
115115
116116## Automatic FLE in Mongoose
117117
118- Mongoose supports the declaration of encrypted schemas - schemas that, when connected to a model, utilize MongoDB's Client Side
118+ Mongoose supports the declaration of encrypted schemas - schemas that, when connected to a model, utilize MongoDB's Client Side
119119Field Level Encryption or Queryable Encryption under the hood. Mongoose automatically generates either an ` encryptedFieldsMap ` or a
120120` schemaMap ` when instantiating a MongoClient and encrypts fields on write and decrypts fields on reads.
121121
@@ -126,7 +126,7 @@ See [choosing an in-use encryption approach](https://www.mongodb.com/docs/v7.3/c
126126
127127### Declaring Encrypted Schemas
128128
129- The following schema declares two properties, ` name ` and ` ssn ` . ` ssn ` is encrypted using queryable encryption, and
129+ The following schema declares two properties, ` name ` and ` ssn ` . ` ssn ` is encrypted using queryable encryption, and
130130is configured for equality queries:
131131
132132``` javascript
You can’t perform that action at this time.
0 commit comments