Skip to content

Commit 6beb3fc

Browse files
authored
chore: fix some typos in comments (#5332)
Signed-off-by: xiaolinny <xiaolincode@outlook.com>
1 parent 48ce4cc commit 6beb3fc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugin/cron/chain_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ func TestChainSkipIfStillRunning(t *testing.T) {
187187
}()
188188

189189
// After 5ms, the first job is still in progress, and the second job was
190-
// aleady skipped.
190+
// already skipped.
191191
time.Sleep(5 * time.Millisecond)
192192
started, done := j.Started(), j.Done()
193193
if started != 1 || done != 0 {

server/router/api/v1/attachment_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ func SaveAttachmentBlob(ctx context.Context, profile *profile.Profile, stores *s
321321
} else if instanceStorageSetting.StorageType == storepb.InstanceStorageSetting_S3 {
322322
s3Config := instanceStorageSetting.S3Config
323323
if s3Config == nil {
324-
return errors.Errorf("No actived external storage found")
324+
return errors.Errorf("No activated external storage found")
325325
}
326326
s3Client, err := s3.NewClient(ctx, s3Config)
327327
if err != nil {

0 commit comments

Comments
 (0)