Skip to content
This repository was archived by the owner on Jun 19, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/dynamodb-auto-marshaller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ const marshalled = marshaller.marshallItem(original);

// the output of `.marshallItem` can be converted back to a JavaScript type with
// `.unmarshallItem`
const unmarshalled = marshaller.unmarshallItem(original);
const unmarshalled = marshaller.unmarshallItem(marshalled);

// With a few caveats (listed below), the unmarshalled value should have the
// same structure and data as the original value.
Expand Down