Skip to content

Commit 5fb1bd4

Browse files
committed
fix typo
1 parent dba1bc2 commit 5fb1bd4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/azure-web-pubsub/tutorial-build-chat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ You may remember in the [publish and subscribe message tutorial](./tutorial-pub-
185185
let id = prompt('Please input your user name');
186186
let res = await fetch(`/negotiate?id=${id}`);
187187
let url = await res.text();
188-
let ws = new WebSocket(url);+
188+
let ws = new WebSocket(url);
189189
ws.onopen = () => console.log('connected');
190190
})();
191191
</script>

0 commit comments

Comments
 (0)