0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00

chore: fix typo in lib.deno_core.d.ts (#9416)

This commit is contained in:
Ikko Ashimine 2021-02-08 00:30:45 +09:00 committed by GitHub
parent a601d94aa1
commit 45b465f839
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,14 +7,14 @@
declare namespace Deno {
declare namespace core {
/** Send a JSON op to Rust, and synchronously recieve the result. */
/** Send a JSON op to Rust, and synchronously receive the result. */
function jsonOpSync(
opName: string,
args: any,
...zeroCopy: Uint8Array[]
): any;
/** Send a JSON op to Rust, and asynchronously recieve the result. */
/** Send a JSON op to Rust, and asynchronously receive the result. */
function jsonOpAsync(
opName: string,
args: any,