From 982adf53384390ff77ccccab8905e5d5d3518429 Mon Sep 17 00:00:00 2001 From: Arnaud Rocher Date: Mon, 5 Jun 2023 13:22:03 +0200 Subject: [PATCH] Fix typo --- crates/worker/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/worker/src/lib.rs b/crates/worker/src/lib.rs index 4a656e33..6b362bd2 100644 --- a/crates/worker/src/lib.rs +++ b/crates/worker/src/lib.rs @@ -17,7 +17,7 @@ //! #### Overhead //! //! Gloo Workers use web workers. They incur a serialization overhead on the -//! messages they send and receive. Bridges use [bincode](https://!github.com/servo/bincode) +//! messages they send and receive. Bridges use [bincode](https://github.com/servo/bincode) //! by default to communicate with workers, so the cost is substantially higher //! than just calling a function.