From 3dbc3d909e7d04b42f656bb419d9be7688a1d7db Mon Sep 17 00:00:00 2001 From: Tony Knapp <5892063+texastony@users.noreply.github.com> Date: Thu, 15 Apr 2021 10:30:12 -0700 Subject: [PATCH] Address Issue #331 Typo in docstring for StreamDecryptor Address Issue #331 Typo in docstring for StreamDecryptor by correctly referring to the class as a decryption utility as compared to encryption utility. (Utility is probably not the right word...) --- src/aws_encryption_sdk/streaming_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aws_encryption_sdk/streaming_client.py b/src/aws_encryption_sdk/streaming_client.py index aa64b7b15..98b7c7fa6 100644 --- a/src/aws_encryption_sdk/streaming_client.py +++ b/src/aws_encryption_sdk/streaming_client.py @@ -734,7 +734,7 @@ class DecryptorConfig(_ClientConfig): class StreamDecryptor(_EncryptionStream): # pylint: disable=too-many-instance-attributes - """Provides a streaming encryptor for encrypting a stream source. + """Provides a streaming decryptor for decrypting a stream source. Behaves as a standard file-like object. .. note::