From 7746db80f5bcedefd9eb9d84ff37ee4560b6174a Mon Sep 17 00:00:00 2001 From: Kyle Mathews Date: Sat, 4 Oct 2025 12:24:10 -0600 Subject: [PATCH] Update mutations.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤦 --- docs/guides/mutations.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/mutations.md b/docs/guides/mutations.md index b47bd02cd..7607d76e4 100644 --- a/docs/guides/mutations.md +++ b/docs/guides/mutations.md @@ -15,7 +15,7 @@ const todoCollection = createCollection({ id: "todos", onUpdate: async ({ transaction }) => { const mutation = transaction.mutations[0] - await api.todos.update(mutation.original.id, mutation.changed) + await api.todos.update(mutation.original.id, mutation.changes) }, })