From 3bc5f29c5a6d2e567767cf0d965f451deed496dc Mon Sep 17 00:00:00 2001 From: Braydon Kains <93549768+braydonk@users.noreply.github.com> Date: Thu, 15 Aug 2024 13:19:52 -0400 Subject: [PATCH] ballastextension: fix comment typo (#10894) #### Description I know this is a deprecated extension, but I stumbled on this comment and thought it didn't look right. :smile: --- extension/ballastextension/factory.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extension/ballastextension/factory.go b/extension/ballastextension/factory.go index 730950da7d4..36d6004c902 100644 --- a/extension/ballastextension/factory.go +++ b/extension/ballastextension/factory.go @@ -17,7 +17,7 @@ import ( // memHandler returns the total memory of the target host/vm var memHandler = iruntime.TotalMemory -// NewFactory creates a factory for FluentBit extension. +// NewFactory creates a factory for ballast extension. func NewFactory() extension.Factory { return extension.NewFactory(metadata.Type, createDefaultConfig, createExtension, metadata.ExtensionStability) }