From: Koichi Shiraishi Date: Fri, 31 May 2024 01:33:13 +0000 (+0900) Subject: internal/trace/event: fix typo in comment X-Git-Tag: go1.24rc1~1411 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=3637aa3e1ec739f323f59070780672542834a9fd;p=gostls13.git 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 --- 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