Skip to content

Commit

Permalink
fix(typo): fixed panicked typo (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
lindell authored Nov 4, 2023
1 parent ac62762 commit 9b5774a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/multigitter/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func (r *Runner) Run(ctx context.Context) error {
defer func() {
if r := recover(); r != nil {
log.Error(r)
rc.AddError(errors.New("run paniced"), repos[i], nil)
rc.AddError(errors.New("run panicked"), repos[i], nil)
}
}()

Expand Down

0 comments on commit 9b5774a

Please sign in to comment.