diff --git a/client-ts/signalr-protocol-msgpack/README.md b/client-ts/signalr-protocol-msgpack/README.md index 00897674d4..1c7b0dcfa7 100644 --- a/client-ts/signalr-protocol-msgpack/README.md +++ b/client-ts/signalr-protocol-msgpack/README.md @@ -16,7 +16,7 @@ To use the client in a browser, copy `*.js` files from the `dist/browser` folder ```JavaScript let connection = new signalR.HubConnection('/chat', { - protocol: new signalR.protocol.msgpack.MessagePackHubProtocol() + protocol: new signalR.protocols.msgpack.MessagePackHubProtocol() }); connection.on('send', data => { @@ -43,4 +43,4 @@ connection.on('send', data => { connection.start() .then(() => connection.invoke('send', 'Hello')); -``` \ No newline at end of file +```