From cd6414c0324c5394e2944515e44fabef719e7085 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 29 Jun 2021 21:16:43 -0700 Subject: [PATCH] Fix summaries --- RedBookPlayer/Hardware/SoundOutput.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RedBookPlayer/Hardware/SoundOutput.cs b/RedBookPlayer/Hardware/SoundOutput.cs index ca89391..a88dab7 100644 --- a/RedBookPlayer/Hardware/SoundOutput.cs +++ b/RedBookPlayer/Hardware/SoundOutput.cs @@ -13,7 +13,7 @@ namespace RedBookPlayer.Hardware #region Public Fields /// - /// Indicate if the disc is ready to be used + /// Indicate if the output is ready to be used /// public bool Initialized { get; private set; } = false; @@ -23,7 +23,7 @@ namespace RedBookPlayer.Hardware public bool ApplyDeEmphasis { get; set; } = false; /// - /// Indicate if the disc is playing + /// Indicate if the output is playing /// public bool Playing => _soundOut.PlaybackState == PlaybackState.Playing;