From c7346ecdc610bfe83751ea4de883e11ed6595e35 Mon Sep 17 00:00:00 2001 From: Ian Cottrell Date: Fri, 20 Dec 2019 15:05:54 -0500 Subject: [PATCH] internal/telemetry: remove an extraneous comment There was a fragment of a sentence that must have been from a previous version (as it talks about a return value for a function that does not have one). Change-Id: I9d154fe10711344f93e1d49b68a811dbc9772710 Reviewed-on: https://go-review.googlesource.com/c/tools/+/212241 Run-TryBot: Ian Cottrell TryBot-Result: Gobot Gobot Reviewed-by: Emmanuel Odeke --- internal/telemetry/export/export.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/telemetry/export/export.go b/internal/telemetry/export/export.go index 8ed8cd3ffd..a48c6f1f09 100644 --- a/internal/telemetry/export/export.go +++ b/internal/telemetry/export/export.go @@ -22,7 +22,7 @@ type Exporter interface { // Log is a function that handles logging events. // Observers may use information in the context to decide what to do with a - // given log event. They should return true if they choose to handle the + // given log event. Log(context.Context, telemetry.Event) Metric(context.Context, telemetry.MetricData)