From 59a3bfaaf641ea2ded246407d2a4795f07cb8191 Mon Sep 17 00:00:00 2001 From: Roger Ng Date: Mon, 9 Dec 2024 17:54:26 +0000 Subject: [PATCH] Fix `go-routine` typo in AWS --- storage/aws/aws.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/aws/aws.go b/storage/aws/aws.go index 4a9a95fc..81cb402f 100644 --- a/storage/aws/aws.go +++ b/storage/aws/aws.go @@ -164,7 +164,7 @@ func New(ctx context.Context, cfg Config, opts ...func(*options.StorageOptions)) // Kick off go-routine which handles the integration of entries. go r.consumeEntriesTask(ctx) - // Kick off go-routing which handles the publication of checkpoints. + // Kick off go-routine which handles the publication of checkpoints. go r.publishCheckpointTask(ctx, opt.CheckpointInterval) return r, nil