From: zhaokai Date: Fri, 27 Feb 2015 07:51:45 +0000 (+0800) Subject: Fix comment of Benchmark.h X-Git-Tag: v0.27.0~7 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=afe8b202c62302cdbb4b9249db900f79e6d57c53;p=folly.git Fix comment of Benchmark.h Summary: Remove one of the "one" in the comment of BENCHMARK Closes: #140 Test Plan: Inspection. Reviewed By: markisaa@fb.com Subscribers: trunkagent, folly-diffs@, yfeldblum FB internal diff: D1877997 Signature: t1:1877997:1425063475:c53c09d105809de9a9070f464fb0571a4dd1e5d1 --- diff --git a/folly/Benchmark.h b/folly/Benchmark.h index 87f26630..dd11a006 100644 --- a/folly/Benchmark.h +++ b/folly/Benchmark.h @@ -284,11 +284,11 @@ void doNotOptimizeAway(T&& datum) { static unsigned funName(paramType paramName) /** - * Introduces a benchmark function. Use with either one one or two - * arguments. The first is the name of the benchmark. Use something - * descriptive, such as insertVectorBegin. The second argument may be - * missing, or could be a symbolic counter. The counter dictates how - * many internal iteration the benchmark does. Example: + * Introduces a benchmark function. Use with either one or two arguments. + * The first is the name of the benchmark. Use something descriptive, such + * as insertVectorBegin. The second argument may be missing, or could be a + * symbolic counter. The counter dictates how many internal iteration the + * benchmark does. Example: * * BENCHMARK(vectorPushBack) { * vector v;