Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: remove unnecessary stat property from Connection comments #2097

Merged
merged 3 commits into from
Oct 2, 2023
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/interface/src/connection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ export interface Stream extends Duplex<AsyncGenerator<Uint8ArrayList>, Source<Ui
timeline: StreamTimeline

/**
* Once a protocol has been negotiated for this stream, it will be set on the stat object
* The protocol that was negotiated for this stream
wemeetagain marked this conversation as resolved.
Show resolved Hide resolved
*/
protocol?: string

Expand Down Expand Up @@ -231,12 +231,12 @@ export interface Connection {
timeline: ConnectionTimeline

/**
* Once a multiplexer has been negotiated for this stream, it will be set on the stat object
* The multiplexer that was used to negotiate this connection
wemeetagain marked this conversation as resolved.
Show resolved Hide resolved
*/
multiplexer?: string

/**
* Once a connection encrypter has been negotiated for this stream, it will be set on the stat object
* The encryption protocol that was used to negotiate this connection
wemeetagain marked this conversation as resolved.
Show resolved Hide resolved
*/
encryption?: string

Expand Down
Loading