Skip to content

Commit

Permalink
Fixed a typo (MaterialDesignInXAML#3581)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmoney2014 authored Jun 3, 2024
1 parent 4ba8a64 commit 5dd9ca9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ await Task.Run(() =>
}
catch (ObjectDisposedException)
{
/* we are we suppressing this?
/* Why are we suppressing this?
* as we have switched out wait onto another thread, so we don't block the UI thread, the
* _cleanUp/Dispose() action might also happen, and the _disposedWaitHandle might get disposed
* just before we WaitOne. We won't add a lock in the _cleanUp because it might block for 2 seconds.
Expand Down Expand Up @@ -152,7 +152,7 @@ internal Action Pause()
}

/// <summary>
/// Gets or sets a value that indicates whether this message queue displays messages without discarding duplicates.
/// Gets or sets a value that indicates whether this message queue displays messages without discarding duplicates.
/// False to show every message even if there are duplicates.
/// </summary>
public bool DiscardDuplicates { get; set; }
Expand Down

0 comments on commit 5dd9ca9

Please sign in to comment.