aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sound/audiostream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/audiostream.h b/sound/audiostream.h
index 05c7257a21..ed6b37e51c 100644
--- a/sound/audiostream.h
+++ b/sound/audiostream.h
@@ -106,7 +106,7 @@ AudioStream *makeLinearInputStream(const byte *ptr, uint32 len, int rate, byte f
/**
* An audio stream to which additional data can be appended on-the-fly.
- * Used by SMUSH, iMuseDigital, and the Kyrandia 3 VQA player.
+ * Used by SMUSH, iMuseDigital, the Kyrandia 3 VQA player, etc.
*/
class AppendableAudioStream : public Audio::AudioStream {
public:
@@ -123,7 +123,7 @@ public:
/**
* Mark the stream as finished, that is, signal that no further data
* will be appended to it. Only after this has been done can the
- * AppendableAudioStream ever 'end' (
+ * AppendableAudioStream ever 'end'
*/
virtual void finish() = 0;
};