From c7d57dede8957970cab0412eef4c2cf71d4688d9 Mon Sep 17 00:00:00 2001 From: Augusto Toledo Date: Tue, 14 Sep 2021 12:23:28 -0300 Subject: [PATCH] docs(lib-dynamodb): fix sintax errors inside objects --- lib/lib-dynamodb/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/lib-dynamodb/README.md b/lib/lib-dynamodb/README.md index 57f1b79d3e24f..714592d455cfc 100644 --- a/lib/lib-dynamodb/README.md +++ b/lib/lib-dynamodb/README.md @@ -101,16 +101,16 @@ second parameter during creation of document client as follows: ```js const marshallOptions = { // Whether to automatically convert empty strings, blobs, and sets to `null`. - convertEmptyValues: false; // false, by default. + convertEmptyValues: false, // false, by default. // Whether to remove undefined values while marshalling. - removeUndefinedValues: false; // false, by default. + removeUndefinedValues: false, // false, by default. // Whether to convert typeof object to map attribute. - convertClassInstanceToMap: false; // false, by default. + convertClassInstanceToMap: false, // false, by default. }; const unmarshallOptions = { // Whether to return numbers as a string instead of converting them to native JavaScript numbers. - wrapNumbers: false; // false, by default. + wrapNumbers: false, // false, by default. }; const translateConfig = { marshallOptions, unmarshallOptions };