docs: fix broken link in WebView2 blog

Close #5553
Co-authored-by: Antón Molleda <molant@users.noreply.github.com>
This commit is contained in:
Sofia Nguy 2021-07-22 21:28:48 -07:00 коммит произвёл GitHub
Родитель 3ad218786d
Коммит 16d80c174c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -108,7 +108,7 @@ Communicating between JavaScript and C++ or C# requires [marshalling](https://en
most commonly to a JSON string. JSON serialization/parsing is an expensive operation, and IPC-bottlenecks can negatively impact performance.
Starting with Edge 93, WV2 will use [CBOR](https://en.wikipedia.org/wiki/CBOR) for network events.
Electron supports direct IPC between any two processes via the [MessagePorts](https://www.electronjs.org/docs/latest/performance/message-ports/) API,
Electron supports direct IPC between any two processes via the [MessagePorts](https://www.electronjs.org/docs/latest/tutorial/message-ports) API,
which utilize [the structured clone algorithm](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm).
Applications which leverage this can avoid paying the JSON-serialization tax when sending objects between processes.