From b1bd18637983c927cd14ba20467b856da80561ab Mon Sep 17 00:00:00 2001 From: extempore Date: Sat, 16 Jul 2011 05:52:00 +0000 Subject: [PATCH] Fix Benchmark documentation to match current arguments. Contributed by Josh Marcus. git-svn-id: http://lampsvn.epfl.ch/svn-repos/scala/scala/trunk@25307 5e8d7ff9-d8ef-0310-90f0-a4852d11357a --- src/library/scala/testing/Benchmark.scala | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/library/scala/testing/Benchmark.scala b/src/library/scala/testing/Benchmark.scala index a7548aa84..5c895213e 100644 --- a/src/library/scala/testing/Benchmark.scala +++ b/src/library/scala/testing/Benchmark.scala @@ -20,10 +20,9 @@ import compat.Platform * The `run` method has to be defined by the user, who will perform the * timed operation there. Run the benchmark as follows: * {{{ - * > scala sort1 5 times.log + * > scala sort1 5 * }}} - * This will run the benchmark 5 times and log the execution times in - * a file called `times.log`. + * This will run the benchmark 10 times, and print the execution times to stdout. * * @author Iulian Dragos, Burak Emir */