mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 15:04:11 -05:00
chore(ext/web): fix typo (#16248)
implictly -> implicitly assiging -> assigning
This commit is contained in:
parent
d47b17d37d
commit
ba3d0da6ab
1 changed files with 2 additions and 2 deletions
4
ext/web/lib.deno_web.d.ts
vendored
4
ext/web/lib.deno_web.d.ts
vendored
|
@ -914,8 +914,8 @@ declare class MessagePort extends EventTarget {
|
|||
postMessage(message: any, transfer: Transferable[]): void;
|
||||
postMessage(message: any, options?: StructuredSerializeOptions): void;
|
||||
/**
|
||||
* Begins dispatching messages received on the port. This is implictly called
|
||||
* when assiging a value to `this.onmessage`.
|
||||
* Begins dispatching messages received on the port. This is implicitly called
|
||||
* when assigning a value to `this.onmessage`.
|
||||
*/
|
||||
start(): void;
|
||||
addEventListener<K extends keyof MessagePortEventMap>(
|
||||
|
|
Loading…
Reference in a new issue