summaryrefslogtreecommitdiff
path: root/ext/flash/01_http.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/flash/01_http.js')
-rw-r--r--ext/flash/01_http.js6
1 files changed, 3 insertions, 3 deletions
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,