From 5dd9ca96ed81cb9c6abd79a6fa76a8266ada42d7 Mon Sep 17 00:00:00 2001 From: TAE HYUN KIM <107834618+Tmoney2014@users.noreply.github.com> Date: Mon, 3 Jun 2024 14:36:15 +0900 Subject: [PATCH] Fixed a typo (#3581) --- src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs b/src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs index 9a7839dc1b..e14e36a0ec 100644 --- a/src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs +++ b/src/MaterialDesignThemes.Wpf/SnackbarMessageQueue.cs @@ -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. @@ -152,7 +152,7 @@ internal Action Pause() } /// - /// 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. /// public bool DiscardDuplicates { get; set; }