From f07d018959b5c8dfff6666d95c96f22c240bb735 Mon Sep 17 00:00:00 2001 From: aishvayy <54576680+aishvayy@users.noreply.github.com> Date: Fri, 19 Sep 2025 15:03:15 +0530 Subject: [PATCH] Update en-US.mdx Grammar fix --- .../en-US.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/questions/what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript/en-US.mdx b/questions/what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript/en-US.mdx index 42c6996..d04952f 100644 --- a/questions/what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript/en-US.mdx +++ b/questions/what-is-the-difference-between-a-map-object-and-a-plain-object-in-javascript/en-US.mdx @@ -74,7 +74,7 @@ In summary, while both plain objects and `Map` objects can be used to store key- ## Notes -`Map` objects cannot be serialized to be sent in HTTP requests, but libraries like [superjson](https://github.com/blitz-js/superjson) allowing them to be serialized and deserialized. +`Map` objects cannot be serialized to be sent in HTTP requests, but libraries like [superjson](https://github.com/blitz-js/superjson) allow them to be serialized and deserialized. ## Further reading