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;