Skip to content

Commit

Permalink
Fix intendation of function return statement
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Oct 12, 2020
1 parent ae87e74 commit 69e32b2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion BatchDotnetTutorialFfmpeg/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,8 @@ private static async Task<bool> MonitorTasks(BatchClient batchClient, string job
{
Console.WriteLine(successMessage);
}
return allTasksSuccessful;

return allTasksSuccessful;
}
}
}

0 comments on commit 69e32b2

Please sign in to comment.