Skip to content

Commit cc17fa2

Browse files
authored
docs(lib-dynamodb): fix syntax errors inside objects (#2788)
1 parent 2b336a3 commit cc17fa2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/lib-dynamodb/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -101,16 +101,16 @@ second parameter during creation of document client as follows:
101101
```js
102102
const marshallOptions = {
103103
// Whether to automatically convert empty strings, blobs, and sets to `null`.
104-
convertEmptyValues: false; // false, by default.
104+
convertEmptyValues: false, // false, by default.
105105
// Whether to remove undefined values while marshalling.
106-
removeUndefinedValues: false; // false, by default.
106+
removeUndefinedValues: false, // false, by default.
107107
// Whether to convert typeof object to map attribute.
108-
convertClassInstanceToMap: false; // false, by default.
108+
convertClassInstanceToMap: false, // false, by default.
109109
};
110110

111111
const unmarshallOptions = {
112112
// Whether to return numbers as a string instead of converting them to native JavaScript numbers.
113-
wrapNumbers: false; // false, by default.
113+
wrapNumbers: false, // false, by default.
114114
};
115115

116116
const translateConfig = { marshallOptions, unmarshallOptions };

0 commit comments

Comments
 (0)