Skip to content

Commit 3cbc619

Browse files
authored
Minor proposal (line 151) (#317)
* Minor proposal (semantic issue on line 100)
1 parent de9eb2f commit 3cbc619

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Documentation~/videostreaming.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Or, obtained from `AddTrack` method as its return value.
9797
var sender = peerConnection.AddTrack(track);
9898
```
9999

100-
After obtained the instance of `RTCRtpSender`, To get the settings about the sending stream, call the `GetParameter` method is able. And call the `SetParameter` method with customized settings. as a result, the settings are reflected.
100+
After obtained the instance of `RTCRtpSender`, to get the settings about the sending stream, call the `GetParameter` method is able. And call the `SetParameter` method with customized settings. as a result, the settings are reflected.
101101

102102
```CSharp
103103
var parameters = sender.GetParameters();
@@ -148,7 +148,7 @@ peerConnection.OnTrack = (RTCTrackEvent e) => {
148148
### Receiving multi video
149149

150150
Multiple VideoTracks can be received in a single `PeerConnection`.
151-
It is a good idea to call the `AddTransciver` method on the `PeerConnection` instance as needed track count, and then do signaling.
151+
It is a good idea to call the `AddTransceiver` method on the `PeerConnection` instance as needed track count, and then do signaling.
152152

153153
```CSharp
154154
// call AddTransceiver as needed track count

0 commit comments

Comments
 (0)