# Minor: Fixed typo in cache command description.
Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/42ee9aeb Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/42ee9aeb Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/42ee9aeb Branch: refs/heads/ignite-sql-tests Commit: 42ee9aeb9e0896f8f80fca5758e3e91ad211d13d Parents: a530f1d Author: AKuznetsov <akuznet...@gridgain.com> Authored: Mon Mar 16 10:30:31 2015 +0700 Committer: AKuznetsov <akuznet...@gridgain.com> Committed: Mon Mar 16 10:30:31 2015 +0700 ---------------------------------------------------------------------- .../ignite/visor/commands/cache/VisorCacheCommand.scala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/42ee9aeb/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala ---------------------------------------------------------------------- diff --git a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala index 1023708..afbbce2 100644 --- a/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala +++ b/modules/visor-console/src/main/scala/org/apache/ignite/visor/commands/cache/VisorCacheCommand.scala @@ -65,7 +65,7 @@ import scala.util.control.Breaks._ * {{{ * cache * cache -i - * cache {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>} {-s=hi|mi|re|wr|cn} {-a} {-r} + * cache {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>} {-s=hi|mi|rd|wr|cn} {-a} {-r} * cache -clear {-c=<cache-name>} * cache -scan -c=<cache-name> {-id=<node-id>|id8=<node-id8>} {-p=<page size>} * cache -swap {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>} @@ -83,7 +83,7 @@ import scala.util.control.Breaks._ * If neither is specified statistics will be gathered from all nodes. * -c=<cache-name> * Name of the cache. - * -s=hi|mi|re|wr|cn + * -s=hi|mi|rd|wr|cn * Defines sorting type. Sorted by: * hi Hits. * mi Misses. @@ -630,7 +630,7 @@ object VisorCacheCommand { spec = Seq( "cache", "cache -i", - "cache {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>} {-s=hi|mi|re|wr} {-a} {-r}", + "cache {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>} {-s=hi|mi|rd|wr} {-a} {-r}", "cache -clear {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>}", "cache -scan -c=<cache-name> {-id=<node-id>|id8=<node-id8>} {-p=<page size>}", "cache -swap {-c=<cache-name>} {-id=<node-id>|id8=<node-id8>}" @@ -660,7 +660,7 @@ object VisorCacheCommand { "-swap" -> Seq( "Swaps backup entries in cache." ), - "-s=hi|mi|re|wr|cn" -> Seq( + "-s=hi|mi|rd|wr|cn" -> Seq( "Defines sorting type. Sorted by:", " hi Hits.", " mi Misses.",