Skip to content

Commit

Permalink
util-stats: Fix typo in docs
Browse files Browse the repository at this point in the history
RB_ID=842076
  • Loading branch information
Yaohua Zhuo authored and jenkins committed Jun 20, 2016
1 parent 98cedf1 commit 7e4ae46
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -15,9 +15,9 @@ import scala.collection.JavaConverters._
* {{{
* val isr = new InMemoryStatsReceiver
* isr.counter("a", "b", "foo")
* irs.counter("a/b", "bar")
* isr.counter("a/b", "bar")
*
* irs.print(Console.out) // will print two lines "a/b/foo 0" and "a/b/bar 0"
* isr.print(Console.out) // will print two lines "a/b/foo 0" and "a/b/bar 0"
*
* assert(isr.counters(Seq("a", "b", "foo") == 0)) // ok
* assert(isr.counters(Seq("a", "b", "bar") == 0)) // fail
Expand Down

0 comments on commit 7e4ae46

Please sign in to comment.