Skip to content

Commit cee370c

Browse files
committed
fix(core): ParallelGenerator typo
1 parent aee1442 commit cee370c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/parallel_generator.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ func (pg ParallelGenerator) Run() error {
4646
case err := <-errChan:
4747
return err
4848
case <-doneChan:
49-
log.WithField("duration", time.Since(start)).Info("module generation finished")
49+
log.WithField("duration", time.Since(start)).Info("parallel generation finished")
5050
return nil
5151
}
5252
}
@@ -67,5 +67,5 @@ func (pg ParallelGenerator) Cleanup() error {
6767
}
6868

6969
func (pg ParallelGenerator) String() string {
70-
return fmt.Sprintf("[ModuleGenerator]tasks=%d", len(pg.subtasks))
70+
return fmt.Sprintf("[ParallelGenerator]tasks=%d", len(pg.subtasks))
7171
}

0 commit comments

Comments
 (0)