From 7afec96ad6209887472b01e580e9c6f561c7540d Mon Sep 17 00:00:00 2001 From: jheer Date: Mon, 16 Sep 2024 14:18:05 -0700 Subject: [PATCH] docs: Fix missing comma typo. --- README.md | 2 +- docs/index.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0fa9699..fb2f5f0 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ const table = tableFromIPC(ipc, { useDate: true, // map dates and timestamps to Date objects useDecimalBigInt: true, // use BigInt for decimals, do not coerce to number useBigInt: true, // use BigInt for 64-bit ints, do not coerce to number - useMap: true // create Map objects for [key, value] pair lists + useMap: true, // create Map objects for [key, value] pair lists useProxy: true // use zero-copy proxies for struct and table row objects }); ``` diff --git a/docs/index.md b/docs/index.md index d9a92f4..29da2f5 100644 --- a/docs/index.md +++ b/docs/index.md @@ -117,7 +117,7 @@ const table = tableFromIPC(ipc, { useDate: true, // map dates and timestamps to Date objects useDecimalBigInt: true, // use BigInt for decimals, do not coerce to number useBigInt: true, // use BigInt for 64-bit ints, do not coerce to number - useMap: true // create Map objects for [key, value] pair lists + useMap: true, // create Map objects for [key, value] pair lists useProxy: true // use zero-copy proxies for struct and table row objects }); ```