From fadb468f1f0fd890de4cef5f9de2c596b4730d1d Mon Sep 17 00:00:00 2001 From: 0marperez Date: Tue, 5 Dec 2023 15:14:03 -0500 Subject: [PATCH] Javadoc comment clarity change --- .../kotlin/runtime/config/compression/CompressionSettings.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/compression/CompressionSettings.kt b/aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/compression/CompressionSettings.kt index 42c6764b8d6..9a8fcd84174 100644 --- a/aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/compression/CompressionSettings.kt +++ b/aws-runtime/aws-config/common/src/aws/sdk/kotlin/runtime/config/compression/CompressionSettings.kt @@ -10,13 +10,13 @@ import aws.smithy.kotlin.runtime.config.longEnvSetting public object CompressionSettings { /** - * Determines when a request should be compressed or not + * Determines if a request should be compressed or not */ public val AwsDisableRequestCompression: EnvironmentSetting = boolEnvSetting("aws.disableRequestCompression", "AWS_DISABLE_REQUEST_COMPRESSION") /** - * The threshold used to determine when a request should be compressed + * The threshold used to determine if a request should be compressed */ public val AwsRequestMinCompressionSizeBytes: EnvironmentSetting = longEnvSetting("aws.requestMinCompressionSizeBytes", "AWS_REQUEST_MIN_COMPRESSION_SIZE_BYTES")