small fix: removed ';'

This commit is contained in:
michielmulders 2017-09-30 19:55:06 +02:00
parent 6d5224601f
commit c46dde75ee
1 changed files with 2 additions and 2 deletions

View File

@ -469,9 +469,9 @@ All transactions are printed to the console. To use this piece of code, you will
.. code-block:: js
const WebSocket = require('ws');
const WebSocket = require('ws')
const ws = new WebSocket('ws://localhost:9985/api/v1/streams/valid_transactions');
const ws = new WebSocket('ws://localhost:9985/api/v1/streams/valid_transactions')
ws.on('open', () => {
console.log("CONNECTED")