From 3637aa3e1ec739f323f59070780672542834a9fd Mon Sep 17 00:00:00 2001 From: Koichi Shiraishi Date: Fri, 31 May 2024 10:33:13 +0900 Subject: [PATCH] internal/trace/event: fix typo in comment Change-Id: Ia191daf8e748f17dcea6038166504fb50e7ddb0d Reviewed-on: https://go-review.googlesource.com/c/go/+/589535 Auto-Submit: Michael Knyszek Reviewed-by: Michael Knyszek LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov --- src/internal/trace/event/event.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/internal/trace/event/event.go b/src/internal/trace/event/event.go index adcb8811d8..9a9bf74c6a 100644 --- a/src/internal/trace/event/event.go +++ b/src/internal/trace/event/event.go @@ -4,7 +4,9 @@ package event -// Type is the common in-memory representation of the low-leve +// Type indicates an event's type from which its arguments and semantics can be +// derived. Its representation matches the wire format's representation of the event +// types that precede all event data. type Type uint8 // Spec is a specification for a trace event. It contains sufficient information -- 2.48.1