From 180ba187d3357b02d7efb1474466c98719fdb5cf Mon Sep 17 00:00:00 2001 From: antirez Date: Wed, 13 Apr 2011 20:17:11 +0200 Subject: [PATCH] fixed typo in comment --- src/redis-trib.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/redis-trib.rb b/src/redis-trib.rb index 413f7c07..af599cbe 100755 --- a/src/redis-trib.rb +++ b/src/redis-trib.rb @@ -80,7 +80,7 @@ class ClusterNode def info_string # We want to display the hash slots assigned to this node - # as ranges, like in: "1-5,8,9,20-35,30" + # as ranges, like in: "1-5,8-9,20-25,30" # # Note: this could be easily written without side effects, # we use 'slots' just to split the computation into steps.