From d654e21ae2becf5c0f85979fc20c07c2dc34a18c Mon Sep 17 00:00:00 2001 From: kixelated Date: Tue, 31 Oct 2023 00:41:48 +0900 Subject: [PATCH] fix a typo --- web/src/pages/blog/replacing-webrtc.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/blog/replacing-webrtc.mdx b/web/src/pages/blog/replacing-webrtc.mdx index 46e30b8..a17ae04 100644 --- a/web/src/pages/blog/replacing-webrtc.mdx +++ b/web/src/pages/blog/replacing-webrtc.mdx @@ -281,7 +281,7 @@ You can't put the toothpaste back in the tube. However, there are actually quite a few ways of dropping media with [WebTransport](#webtransport): 1. Use datagrams and choose which packets to transmit. (like WebRTC) -2. Use QUIC streams and close them to stop transmittions. (like [RUSH](https://www.ietf.org/archive/id/draft-kpugin-rush-00.html)) +2. Use QUIC streams and close them to stop transmissions. (like [RUSH](https://www.ietf.org/archive/id/draft-kpugin-rush-00.html)) 3. Use QUIC streams and prioritize them. (like [Warp](https://www.youtube.com/watch?v=PncdrMPVaNc)) I'm biased because I made the 3rd one.