From 92a6cd6aa24e20e0b3fb26e113a5b405ac35b87c Mon Sep 17 00:00:00 2001 From: Victor Engmark Date: Fri, 10 Jun 2022 11:01:34 +1200 Subject: [PATCH] docs(rds): Fix storage allocation units The upstream documentation uses "gigabytes" in one place and "GiB" everywhere else, including the dashboard. Presumably "gibibytes" was meant, so the CDK documentation should reflect that. --- packages/@aws-cdk/aws-rds/lib/instance.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/@aws-cdk/aws-rds/lib/instance.ts b/packages/@aws-cdk/aws-rds/lib/instance.ts index c5a59c709517d..9b94564122ff2 100644 --- a/packages/@aws-cdk/aws-rds/lib/instance.ts +++ b/packages/@aws-cdk/aws-rds/lib/instance.ts @@ -813,7 +813,7 @@ export interface DatabaseInstanceSourceProps extends DatabaseInstanceNewProps { readonly timezone?: string; /** - * The allocated storage size, specified in gigabytes (GB). + * The allocated storage size, specified in gibibytes (GiB). * * @default 100 */