Skip to content

Commit

Permalink
chore: fix typo in lib.deno_core.d.ts (denoland#9416)
Browse files Browse the repository at this point in the history
  • Loading branch information
eltociear committed Feb 7, 2021
1 parent a601d94 commit 45b465f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/lib.deno_core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 45b465f

Please sign in to comment.