Skip to content

Commit d873fd4

Browse files
lint
1 parent 6d5724e commit d873fd4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/field-level-encryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
119119
Field 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
130130
is configured for equality queries:
131131

132132
```javascript

0 commit comments

Comments
 (0)