From fc5b7e00f8bffcf0b70804fc0e33975ff8919b41 Mon Sep 17 00:00:00 2001 From: Matt Ranney Date: Fri, 24 Sep 2010 14:16:22 -0700 Subject: [PATCH] Typo. --- examples/example_multi.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/example_multi.js b/examples/example_multi.js index aaa1c10567..35c08e1840 100644 --- a/examples/example_multi.js +++ b/examples/example_multi.js @@ -26,7 +26,7 @@ client.multi() client.mset("incr thing", 100, "incr other thing", 1, redis.print); -// start a separate command queue for multie +// start a separate multi command queue var multi = client.multi(); multi.incr("incr thing", redis.print); multi.incr("incr other thing", redis.print);