summaryrefslogtreecommitdiff
path: root/core/lib.deno_core.d.ts
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-02-08 00:30:45 +0900
committerGitHub <noreply@github.com>2021-02-07 16:30:45 +0100
commit45b465f8392b58f3cc524502737e98feecdf2c25 (patch)
tree63445b24bc7626a97cb972e59e6f7f107b9a240e /core/lib.deno_core.d.ts
parenta601d94aa1fa54074cd37ea011e874611f497938 (diff)
chore: fix typo in lib.deno_core.d.ts (#9416)
Diffstat (limited to 'core/lib.deno_core.d.ts')
-rw-r--r--core/lib.deno_core.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/lib.deno_core.d.ts b/core/lib.deno_core.d.ts
index 3e113ca15..f78c6fec2 100644
--- a/core/lib.deno_core.d.ts
+++ b/core/lib.deno_core.d.ts
@@ -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,