From b9bae44f1af6d1bf15ec1cd7ef1258e2e9cfb2f6 Mon Sep 17 00:00:00 2001 From: Talent Zeng Date: Mon, 19 Aug 2024 15:56:18 -0400 Subject: [PATCH] Update transactional-writes.mdx typo change 10 unique tuples to 100 unique tuples for write api --- docs/content/interacting/transactional-writes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/interacting/transactional-writes.mdx b/docs/content/interacting/transactional-writes.mdx index 9fd615c42..b3e605c65 100644 --- a/docs/content/interacting/transactional-writes.mdx +++ b/docs/content/interacting/transactional-writes.mdx @@ -138,7 +138,7 @@ And if you want to convert this `tweet` to private, you would need to delete tha By removing the tuple, we made the tweet visible to no-one, which may not be what we want. -The Write API allows you to send up to 10 unique tuples in the request. (This limit applies to the sum of both writes and deletes in that request). This means we can submit one API call that converts the `tweet` from public to visible to only the `user`'s followers. +The Write API allows you to send up to 100 unique tuples in the request. (This limit applies to the sum of both writes and deletes in that request). This means we can submit one API call that converts the `tweet` from public to visible to only the `user`'s followers.