chore: fix some typos in comments

Signed-off-by: xiaolinny <xiaolincode@outlook.com>
This commit is contained in:
xiaolinny 2025-12-09 15:24:19 +08:00
parent 48ce4ccc26
commit 2b31a01961
2 changed files with 2 additions and 2 deletions

View File

@ -187,7 +187,7 @@ func TestChainSkipIfStillRunning(t *testing.T) {
}()
// After 5ms, the first job is still in progress, and the second job was
// aleady skipped.
// already skipped.
time.Sleep(5 * time.Millisecond)
started, done := j.Started(), j.Done()
if started != 1 || done != 0 {

View File

@ -321,7 +321,7 @@ func SaveAttachmentBlob(ctx context.Context, profile *profile.Profile, stores *s
} else if instanceStorageSetting.StorageType == storepb.InstanceStorageSetting_S3 {
s3Config := instanceStorageSetting.S3Config
if s3Config == nil {
return errors.Errorf("No actived external storage found")
return errors.Errorf("No activated external storage found")
}
s3Client, err := s3.NewClient(ctx, s3Config)
if err != nil {