Skip to content

Commit ef408b3

Browse files
authored
Missing closing paren in example Response construction
The missing closing parenthesis here makes at seem as though the Response Options should be the second argument provided to the JSON.stringify method instead of the Response constructor. Adding the closing parenthesis clarifies this point.
1 parent 9311622 commit ef408b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concept/handler.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ new Response(JSON.stringify({
7373
'Shirakami Fubuki',
7474
'Inugami Korone'
7575
]
76-
}, {
76+
}), {
7777
headers: {
7878
'Content-Type': 'application/json'
7979
}

0 commit comments

Comments
 (0)