Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinematics committed May 30, 2015
1 parent b6861dd commit 04c1cc9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion NetTally/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,11 @@ private async void tallyButton_Click(object sender, RoutedEventArgs e)
}
}


/// <summary>
/// Cancel the cancellation token, if present.
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void cancelTally_Click(object sender, RoutedEventArgs e)
{
cts?.Cancel();
Expand Down

0 comments on commit 04c1cc9

Please sign in to comment.