From 55fb8db332bd13de15ac755241dbb362656bfdcc Mon Sep 17 00:00:00 2001 From: Mark Fussell Date: Wed, 7 Jun 2023 09:33:08 -0700 Subject: [PATCH] Update daprdocs/content/en/developing-applications/building-blocks/cryptography/howto-cryptography.md Co-authored-by: Hannah Hunter <94493363+hhunter-ms@users.noreply.github.com> Signed-off-by: Mark Fussell --- .../building-blocks/cryptography/howto-cryptography.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daprdocs/content/en/developing-applications/building-blocks/cryptography/howto-cryptography.md b/daprdocs/content/en/developing-applications/building-blocks/cryptography/howto-cryptography.md index 2dc1a0b3f..92f3a6710 100644 --- a/daprdocs/content/en/developing-applications/building-blocks/cryptography/howto-cryptography.md +++ b/daprdocs/content/en/developing-applications/building-blocks/cryptography/howto-cryptography.md @@ -36,7 +36,7 @@ const ciphertext = await client.crypto.encrypt(plaintext, { }); ``` -The APIs can also be used with streams, to encrypt data more efficiently when it comes from a stream. In the example below, we are encrypting a file, writing to another file, using streams: +The APIs can also be used with streams, to encrypt data more efficiently when it comes from a stream. The example below encrypts a file, writing to another file, using streams: ```js // `encrypt` can be used as a Duplex stream