Skip to content

Commit

Permalink
fix missing ( )
Browse files Browse the repository at this point in the history
  • Loading branch information
pivotiiii committed Jul 3, 2024
1 parent 85e5e0b commit 5bddfbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Hourglass/AppEntry.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ private static bool ValidateArgsToStdout(CommandLineArguments arguments)
int index = arguments.TimerStart.OfType<TimerStart>().Count();
foreach (var timerStart in arguments.TimerStart.OfType<TimerStart>())
{
Console.Write(timerStart.ToString() + index > 1 ? Environment.NewLine : "");
Console.Write(timerStart.ToString() + (index > 1 ? Environment.NewLine : ""));
index = index - 1;
}
}
Expand Down

0 comments on commit 5bddfbb

Please sign in to comment.