From 05446cd05671e4f19d1e53e38201ef7c914ce047 Mon Sep 17 00:00:00 2001 From: rick Date: Mon, 20 Sep 2010 12:33:05 -0700 Subject: [PATCH] console.log typo --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index afcf58ae25..8c926fdc42 100644 --- a/index.js +++ b/index.js @@ -410,7 +410,7 @@ RedisClient.prototype.connection_gone = function () { self.emit("reconnecting", "delay " + self.retry_delay + ", attempt " + self.attempts); self.retry_timer = setTimeout(function () { if (exports.debug_mode) { - console.log("Retrying conneciton..."); + console.log("Retrying connection..."); } self.retry_delay = self.retry_delay * self.retry_backoff; self.stream.destroy();