Skip to content

Commit 3d4bda5

Browse files
authored
docs: highlight comma (#182)
Highlighting the comma in the Task's readme to avoid simple error when copy-pasting.
1 parent c8c8f6e commit 3d4bda5

File tree

1 file changed

+1
-1
lines changed
  • content/tutorial/02-sveltekit/04-forms/02-named-form-actions

1 file changed

+1
-1
lines changed

content/tutorial/02-sveltekit/04-forms/02-named-form-actions/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export const actions = {
1212
+++create+++: async ({ cookies, request }) => {
1313
const data = await request.formData();
1414
db.createTodo(cookies.get('userid'), data.get('description'));
15-
},
15+
}+++,+++
1616

1717
+++ delete: async ({ cookies, request }) => {
1818
const data = await request.formData();

0 commit comments

Comments
 (0)