From 57f0228a6d3908c90ed20688b64d200db6b4f12d Mon Sep 17 00:00:00 2001 From: Daan Vankerkom Date: Mon, 15 Jan 2018 20:14:51 +0100 Subject: [PATCH] Fix #29 function name typos in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 19aad9f..b8af74c 100755 --- a/README.md +++ b/README.md @@ -143,10 +143,10 @@ export default new Vuex.Store({ state.message = message }, // mutations for reconnect methods - [ws.WS_RECONNECT](state, count) { + SOCKET_RECONNECT(state, count) { console.info(state, count) }, - [ws.WS_RECONNECT_ERROR](state) { + SOCKET_RECONNECT_ERROR(state) { state.socket.reconnectError = true; }, }