From 5aa2b37ab56e8da7fd07393d6b344ce38d77ebff Mon Sep 17 00:00:00 2001 From: Bryce Kahle Date: Thu, 4 Apr 2024 08:25:34 -0700 Subject: [PATCH] fix comment --- pkg/job/extract.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/job/extract.go b/pkg/job/extract.go index 2d256964..632eff22 100644 --- a/pkg/job/extract.go +++ b/pkg/job/extract.go @@ -25,8 +25,8 @@ type KernelExtractReply struct { } // Do implements the Job interface, and is called by the worker. It downloads -// the kernel package, extracts the vmlinux file, and replies with the path to -// the vmlinux file in the reply channel. +// the kernel package, extracts the vmlinux file, and replies with a KernelExtractReply +// structure containing the paths in the reply channel. func (job *KernelExtractionJob) Do(ctx context.Context) error { // Download the kernel package downloadStart := time.Now()