diff --git a/exporter/exporterhelper/obsreport.go b/exporter/exporterhelper/obsreport.go
index 0836363bb74..87fc830e7fe 100644
--- a/exporter/exporterhelper/obsreport.go
+++ b/exporter/exporterhelper/obsreport.go
@@ -83,7 +83,7 @@ func newInstruments(registry *metric.Registry) *instruments {
 	return insts
 }
 
-// obsExporter is a helper to add observability to a component.Exporter.
+// obsExporter is a helper to add observability to an exporter.
 type obsExporter struct {
 	*obsreport.Exporter
 	failedToEnqueueTraceSpansEntry   *metric.Int64CumulativeEntry
diff --git a/obsreport/obsreport_exporter.go b/obsreport/obsreport_exporter.go
index f80e0035402..3e6bb11fe78 100644
--- a/obsreport/obsreport_exporter.go
+++ b/obsreport/obsreport_exporter.go
@@ -38,7 +38,7 @@ const (
 	exporterScope = scopeName + nameSep + exporterName
 )
 
-// Exporter is a helper to add observability to a component.Exporter.
+// Exporter is a helper to add observability to an exporter.
 type Exporter struct {
 	level          configtelemetry.Level
 	spanNamePrefix string
diff --git a/obsreport/obsreport_processor.go b/obsreport/obsreport_processor.go
index 48f620d025b..4029bd8d251 100644
--- a/obsreport/obsreport_processor.go
+++ b/obsreport/obsreport_processor.go
@@ -51,7 +51,7 @@ func BuildProcessorCustomMetricName(configType, metric string) string {
 	return componentPrefix + configType + obsmetrics.NameSep + metric
 }
 
-// Processor is a helper to add observability to a component.Processor.
+// Processor is a helper to add observability to a processor.
 type Processor struct {
 	level    configtelemetry.Level
 	mutators []tag.Mutator
diff --git a/obsreport/obsreport_receiver.go b/obsreport/obsreport_receiver.go
index 09fd2a07381..7cb4682030a 100644
--- a/obsreport/obsreport_receiver.go
+++ b/obsreport/obsreport_receiver.go
@@ -38,7 +38,7 @@ const (
 	receiverScope = scopeName + nameSep + receiverName
 )
 
-// Receiver is a helper to add observability to a receiver.Receiver.
+// Receiver is a helper to add observability to a receiver.
 type Receiver struct {
 	level          configtelemetry.Level
 	spanNamePrefix string
diff --git a/obsreport/obsreport_scraper.go b/obsreport/obsreport_scraper.go
index 4a2e2f0620c..3c88435b9f7 100644
--- a/obsreport/obsreport_scraper.go
+++ b/obsreport/obsreport_scraper.go
@@ -39,7 +39,7 @@ var (
 	scraperScope = scopeName + nameSep + scraperName
 )
 
-// Scraper is a helper to add observability to a component.Scraper.
+// Scraper is a helper to add observability to a scraper.
 type Scraper struct {
 	level      configtelemetry.Level
 	receiverID component.ID
diff --git a/processor/processorhelper/logs.go b/processor/processorhelper/logs.go
index 3ffc3adc750..569ae46a219 100644
--- a/processor/processorhelper/logs.go
+++ b/processor/processorhelper/logs.go
@@ -36,7 +36,7 @@ type logProcessor struct {
 	consumer.Logs
 }
 
-// NewLogsProcessor creates a component.LogsProcessor that ensure context propagation and the right tags are set.
+// NewLogsProcessor creates a processor.Logs that ensure context propagation and the right tags are set.
 func NewLogsProcessor(
 	_ context.Context,
 	set processor.CreateSettings,
diff --git a/processor/processorhelper/metrics.go b/processor/processorhelper/metrics.go
index e5b0483b971..083a7674709 100644
--- a/processor/processorhelper/metrics.go
+++ b/processor/processorhelper/metrics.go
@@ -36,7 +36,7 @@ type metricsProcessor struct {
 	consumer.Metrics
 }
 
-// NewMetricsProcessor creates a component.MetricsProcessor that ensure context propagation and the right tags are set.
+// NewMetricsProcessor creates a processor.Metrics that ensure context propagation and the right tags are set.
 func NewMetricsProcessor(
 	_ context.Context,
 	set processor.CreateSettings,
diff --git a/processor/processorhelper/traces.go b/processor/processorhelper/traces.go
index f349aa62a51..bbf0a474cf4 100644
--- a/processor/processorhelper/traces.go
+++ b/processor/processorhelper/traces.go
@@ -36,7 +36,7 @@ type tracesProcessor struct {
 	consumer.Traces
 }
 
-// NewTracesProcessor creates a component.TracesProcessor that ensure context propagation and the right tags are set.
+// NewTracesProcessor creates a processor.Traces that ensure context propagation and the right tags are set.
 func NewTracesProcessor(
 	_ context.Context,
 	set processor.CreateSettings,