From 7ab0582625391c648dd094d598fe78157ed1a530 Mon Sep 17 00:00:00 2001 From: azuloo Date: Wed, 30 Aug 2023 13:45:18 +0300 Subject: [PATCH] Fix typo in WebRTCPeerConnection documentation --- modules/webrtc/doc_classes/WebRTCPeerConnection.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml index f8c015dd06a0..454f8f2ed434 100644 --- a/modules/webrtc/doc_classes/WebRTCPeerConnection.xml +++ b/modules/webrtc/doc_classes/WebRTCPeerConnection.xml @@ -5,7 +5,7 @@ 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.