From 6b04550820ac70283d856ceb8cb84d3883862c72 Mon Sep 17 00:00:00 2001 From: Emmanuel T Odeke Date: Mon, 4 Mar 2019 15:02:45 -0800 Subject: [PATCH] testing: fix missing verb in StartTimer doc Fixes StartTimer's doc with the verb 'be' that was previously missing in 'can also used'. Change-Id: I4b3e6103fbf62d676056d32fcce4618536b7c05c Reviewed-on: https://go-review.googlesource.com/c/go/+/165117 Reviewed-by: Brad Fitzpatrick --- src/testing/benchmark.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/testing/benchmark.go b/src/testing/benchmark.go index 8dd8cbc17e..24bac313d2 100644 --- a/src/testing/benchmark.go +++ b/src/testing/benchmark.go @@ -104,7 +104,7 @@ type B struct { } // StartTimer starts timing a test. This function is called automatically -// before a benchmark starts, but it can also used to resume timing after +// before a benchmark starts, but it can also be used to resume timing after // a call to StopTimer. func (b *B) StartTimer() { if !b.timerOn { -- 2.50.0