From 78afe0f57cc98d0db83eaa70cfff9009271b2983 Mon Sep 17 00:00:00 2001 From: Kevin Albertson Date: Mon, 23 Dec 2019 15:48:35 -0500 Subject: [PATCH] Fix typo in client side encryption examples --- doc/examples/encryption.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/examples/encryption.rst b/doc/examples/encryption.rst index 75aad30dfc..2f8e2c7a93 100644 --- a/doc/examples/encryption.rst +++ b/doc/examples/encryption.rst @@ -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']) @@ -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'])