From e4c6e6e95f626b1ce8601f48344a76045f2d6479 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Og=C3=B3rek?= Date: Sun, 15 Jan 2023 04:34:29 +0100 Subject: fix(ext/flash): Fix typo in 'chunked' flash ops (#17302) Just a `s/chuncked/chunked/g`. --- ext/flash/01_http.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ext/flash/01_http.js') diff --git a/ext/flash/01_http.js b/ext/flash/01_http.js index e76f4de52..ce18c2b76 100644 --- a/ext/flash/01_http.js +++ b/ext/flash/01_http.js @@ -638,7 +638,7 @@ }); function tryRespondChunked(token, chunk, shutdown) { - const nwritten = core.ops.op_try_flash_respond_chuncked( + const nwritten = core.ops.op_try_flash_respond_chunked( serverId, token, chunk ?? new Uint8Array(), @@ -646,7 +646,7 @@ ); if (nwritten > 0) { return core.opAsync( - "op_flash_respond_chuncked", + "op_flash_respond_chunked", serverId, token, chunk, @@ -658,7 +658,7 @@ function respondChunked(token, chunk, shutdown) { return core.opAsync( - "op_flash_respond_chuncked", + "op_flash_respond_chunked", serverId, token, chunk, -- cgit v1.2.3