From 12cead60ac0d8b5ec179c4eec1a03b68fd007204 Mon Sep 17 00:00:00 2001 From: Antoine Toulme Date: Fri, 29 Mar 2024 18:19:03 -0700 Subject: [PATCH] [chore] update the comment of the component package (#9798) Add connector as a type of component. --- component/doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/component/doc.go b/component/doc.go index cef6b568edf..c7ac848a1ef 100644 --- a/component/doc.go +++ b/component/doc.go @@ -4,5 +4,5 @@ // Package component outlines the components used in the collector // and provides a foundation for the component’s creation and // termination process. A component can be either a receiver, exporter, -// processor, or an extension. +// processor, an extension, or a connector. package component // import "go.opentelemetry.io/collector/component"