aboutsummaryrefslogtreecommitdiff
path: root/files/fr/web/api/rtcpeerconnection/setconfiguration/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/fr/web/api/rtcpeerconnection/setconfiguration/index.md')
-rw-r--r--files/fr/web/api/rtcpeerconnection/setconfiguration/index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/files/fr/web/api/rtcpeerconnection/setconfiguration/index.md b/files/fr/web/api/rtcpeerconnection/setconfiguration/index.md
index 8ef8585440..70f4712c1e 100644
--- a/files/fr/web/api/rtcpeerconnection/setconfiguration/index.md
+++ b/files/fr/web/api/rtcpeerconnection/setconfiguration/index.md
@@ -46,10 +46,10 @@ Dans cet exemple, on a déjà determiné qu'un redémarrage ICE est nécessaire
```js
var restartConfig = { iceServers: [{
-                          urls: "turn:asia.myturnserver.net",
-                          username: "allie@oopcode.com",
-                          credential: "topsecretpassword"
-                      }]
+ urls: "turn:asia.myturnserver.net",
+ username: "allie@oopcode.com",
+ credential: "topsecretpassword"
+ }]
};
myPeerConnection.setConfiguration(restartConfig);