From 7306a8f184714f614f3b56ef77aceb53dfd4a638 Mon Sep 17 00:00:00 2001 From: Kevin Albertson Date: Tue, 23 Jul 2024 16:34:14 -0400 Subject: [PATCH] format number Co-authored-by: Noah Stapp Co-authored-by: Ezra Chung <88335979+eramongodb@users.noreply.github.com> --- source/client-side-encryption/tests/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/client-side-encryption/tests/README.md b/source/client-side-encryption/tests/README.md index 3d2f4e56ba..0d20740ac8 100644 --- a/source/client-side-encryption/tests/README.md +++ b/source/client-side-encryption/tests/README.md @@ -3231,7 +3231,7 @@ class ClientEncryptionOpts { Create a key with `clientEncryption.createDataKey`. Store the returned key ID in a variable named `keyId`. -Call `clientEncryption.encrypt` to encrypt the int32 value 123 with these options: +Call `clientEncryption.encrypt` to encrypt the int32 value `123` with these options: ```typescript class EncryptOpts { @@ -3249,7 +3249,7 @@ Store the result in a variable named `payload_defaults`. #### Case 1: Uses libmongocrypt defaults -Call `clientEncryption.encrypt` to encrypt the int32 value 123 with these options: +Call `clientEncryption.encrypt` to encrypt the int32 value `123` with these options: ```typescript class EncryptOpts { @@ -3273,7 +3273,7 @@ Assert the returned payload size equals the size of `payload_defaults`. #### Case 2: Accepts `trimFactor` 0 -Call `clientEncryption.encrypt` to encrypt the int32 value 123 with these options: +Call `clientEncryption.encrypt` to encrypt the int32 value `123` with these options: ```typescript class EncryptOpts {