From 991836bc7b95b8f17f5a3cad75ec7ffeb6a47afb Mon Sep 17 00:00:00 2001 From: Stefano Vozza Date: Tue, 28 Mar 2023 17:40:31 +0100 Subject: [PATCH] fix typo Co-authored-by: Connor Kirkpatrick --- source/sdk/js/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/sdk/js/README.md b/source/sdk/js/README.md index 500acd2e..3cbb151a 100644 --- a/source/sdk/js/README.md +++ b/source/sdk/js/README.md @@ -142,7 +142,7 @@ const ec2InstanceIds = await getResourceIds({resourceTypes: ['AWS::EC2::Instance const dbInstanceIds = await getResourceIds({resourceTypes: ['AWS::RDS::DBInstance']}); -// Operations createed with sendQuery that have no arguments must be provided with an empty parameters object +// Operations created with sendQuery that have no arguments must be provided with an empty parameters object const allIds = await getResourceIds({}); ```