Skip to content

Commit

Permalink
Fix typo (#32617)
Browse files Browse the repository at this point in the history
  • Loading branch information
anderspitman authored Mar 8, 2024
1 parent b1eaa5f commit 99f2f7a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The **`WebTransportBidirectionalStream`** interface of the {{domxref("WebTranspo
### Bidirectional transmission initiated by the user agent

To open a bidirectional stream from a user agent, you use the {{domxref("WebTransport.createBidirectionalStream()")}} method to get a reference to a {{domxref("WebTransportBidirectionalStream")}}. The `readable` and `writable` properties return references to `WebTransportReceiveStream` and `WebTransportSendStream` instances.
These inherit from `ReadableStream` and `WebTransportReceiveStream` respectively, and can be used to read from and write to the server.
These inherit from `ReadableStream` and `WritableStream` respectively, and can be used to read from and write to the server.

```js
async function setUpBidirectional() {
Expand Down

0 comments on commit 99f2f7a

Please sign in to comment.