Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/examples/encryption.rst
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ Explicit encryption is a MongoDB community feature and does not use the
# on MongoClient, Database, or Collection.
coll.codec_options)

# Create a new data key and json schema for the encryptedField.
# Create a new data key for the encryptedField.
data_key_id = client_encryption.create_data_key(
'local', key_alt_names=['pymongo_encryption_example_3'])

Expand Down Expand Up @@ -472,7 +472,7 @@ To configure automatic *decryption* without automatic *encryption* set
# on MongoClient, Database, or Collection.
coll.codec_options)

# Create a new data key and json schema for the encryptedField.
# Create a new data key for the encryptedField.
data_key_id = client_encryption.create_data_key(
'local', key_alt_names=['pymongo_encryption_example_4'])

Expand Down