diff options
author | Kamil Ogórek <kamil.ogorek@gmail.com> | 2023-01-15 04:34:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-15 09:04:29 +0530 |
commit | e4c6e6e95f626b1ce8601f48344a76045f2d6479 (patch) | |
tree | 7bdaea20835c470171ed6ac4a3e6c3e3be58c89b /ext/flash/01_http.js | |
parent | 7cd249db10857677b48e2ea9f037113a37603d3a (diff) |
fix(ext/flash): Fix typo in 'chunked' flash ops (#17302)
Just a `s/chuncked/chunked/g`.
Diffstat (limited to 'ext/flash/01_http.js')
-rw-r--r-- | ext/flash/01_http.js | 6 |
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, |