Skip to content

Commit

Permalink
Fix spelling issue
Browse files Browse the repository at this point in the history
  • Loading branch information
sboulema committed Feb 12, 2019
1 parent 0797f40 commit db1f132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TGit/Helpers/ProcessHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ private static void process_Exited(object sender, EventArgs e)
var process = sender as Process;
if (process == null) return;

var exitCodeText = process.ExitCode == 0 ? "Succes" : "Error";
var exitCodeText = process.ExitCode == 0 ? "Success" : "Error";
var summaryText = $"{Environment.NewLine}{exitCodeText} ({(int)(process.ExitTime - process.StartTime).TotalMilliseconds} ms @ {process.ExitTime})";

_outputBox.BeginInvoke((Action) (() => _outputBox.richTextBox.AppendText(
Expand Down

0 comments on commit db1f132

Please sign in to comment.