From 02dfa4f1e320442adfbf510959440678b8e1c69f Mon Sep 17 00:00:00 2001 From: Otavio Macedo Date: Mon, 31 Jan 2022 18:37:49 +0000 Subject: [PATCH] chore(s3): Fixed documentation for `InventoryFormat.ORC` (#18717) Fixes https://github.com/aws/aws-cdk/issues/18677. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license* --- packages/@aws-cdk/aws-s3/lib/bucket.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-s3/lib/bucket.ts b/packages/@aws-cdk/aws-s3/lib/bucket.ts index 6cc76d3736488..42d6a84bdc18b 100644 --- a/packages/@aws-cdk/aws-s3/lib/bucket.ts +++ b/packages/@aws-cdk/aws-s3/lib/bucket.ts @@ -1102,7 +1102,7 @@ export enum InventoryFormat { */ PARQUET = 'Parquet', /** - * Generate the inventory list as Parquet. + * Generate the inventory list as ORC. */ ORC = 'ORC', }