Skip to content

Commit ae9a952

Browse files
authored
fix: add missing parenthesis
1 parent 4edc2d1 commit ae9a952

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/socket/connecting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ sock.ev.on('connection.update', async (update) => {
2525
// In prod, send this string to your frontend then generate the QR there
2626
if (qr) {
2727
// as an example, this prints the qr code to the terminal
28-
console.log(await QRCode.toString(qr, {type:'terminal'})
28+
console.log(await QRCode.toString(qr, {type:'terminal'}))
2929
}
3030
})
3131
```

0 commit comments

Comments
 (0)