diff options
author | azuloo <gnatiyk.taras@gmail.com> | 2023-08-30 13:45:18 +0300 |
---|---|---|
committer | azuloo <gnatiyk.taras@gmail.com> | 2023-08-30 14:02:33 +0300 |
commit | 7ab0582625391c648dd094d598fe78157ed1a530 (patch) | |
tree | 97eccf742e3fe09cec4ba5b82732ab3c2e0ca10c /modules/webrtc/doc_classes/WebRTCPeerConnection.xml | |
parent | bc88dca176cef6b8943ded58c68a60f7c127baea (diff) | |
download | redot-engine-7ab0582625391c648dd094d598fe78157ed1a530.tar.gz |
Fix typo in WebRTCPeerConnection documentation
Diffstat (limited to 'modules/webrtc/doc_classes/WebRTCPeerConnection.xml')
-rw-r--r-- | modules/webrtc/doc_classes/WebRTCPeerConnection.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml index f8c015dd06..454f8f2ed4 100644 --- a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml +++ b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml @@ -5,7 +5,7 @@ </brief_description> <description> A WebRTC connection between the local computer and a remote peer. Provides an interface to connect, maintain and monitor the connection. - Setting up a WebRTC connection between two peers from now on) may not seem a trivial task, but it can be broken down into 3 main steps: + Setting up a WebRTC connection between two peers may not seem a trivial task, but it can be broken down into 3 main steps: - The peer that wants to initiate the connection ([code]A[/code] from now on) creates an offer and send it to the other peer ([code]B[/code] from now on). - [code]B[/code] receives the offer, generate and answer, and sends it to [code]A[/code]). - [code]A[/code] and [code]B[/code] then generates and exchange ICE candidates with each other. |