@@ -356,7 +356,7 @@ func (r *WorkflowInitRunner) Run(ctx context.Context, input WorkflowInitInput) e
356356 form := huh .NewForm (
357357 huh .NewGroup (
358358 huh .NewSelect [string ]().
359- Title ("Initialize a new git repository?" ).
359+ Title ("Initialize a new Git repository?" ).
360360 Description ("(optional)" ).
361361 Options (
362362 huh .NewOption ("Yes" , "yes" ),
@@ -428,7 +428,7 @@ func (r *WorkflowInitRunner) Run(ctx context.Context, input WorkflowInitInput) e
428428 steps = append (steps , SetupStep {
429429 Label : "Git repository initialized" ,
430430 FailLabel : "Git initialization failed" ,
431- ActiveLabel : "Initializing git repository..." ,
431+ ActiveLabel : "Initializing Git repository..." ,
432432 Run : func () error {
433433 gitDir := filepath .Join (absDir , ".git" )
434434 if _ , statErr := os .Stat (gitDir ); ! os .IsNotExist (statErr ) {
@@ -462,7 +462,7 @@ func (r *WorkflowInitRunner) Run(ctx context.Context, input WorkflowInitInput) e
462462 command .Println (r .cmd , " %s Dependencies installed" , ok .Render ("✓" ))
463463 }
464464 if gitInitialized {
465- command .Println (r .cmd , " %s Initialized git repository" , ok .Render ("✓" ))
465+ command .Println (r .cmd , " %s Initialized Git repository" , ok .Render ("✓" ))
466466 }
467467 }
468468
0 commit comments