From 3632be5a25c78f6b28bc65c774cab7a017963c02 Mon Sep 17 00:00:00 2001 From: Brian White Date: Tue, 13 Aug 2013 22:19:28 -0400 Subject: [PATCH] fix code typo in readme --- Readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 5ec24eec3..3b42ef58f 100644 --- a/Readme.md +++ b/Readme.md @@ -386,8 +386,8 @@ function handleDisconnect() { if(err.code === 'PROTOCOL_CONNECTION_LOST') { // Connection to the MySQL server is usually handleDisconnect(); // lost due to either server restart, or a } else { // connnection idle timeout (the wait_timeout - throw err; // server variable configures this) - }); + throw err; // server variable configures this) + } } handleDisconnect();