spelling: receives

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-01-18 08:34:56 -05:00
parent 525775038c
commit 6fe677935d
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ namespace irrklang
{
//! Interface to be implemented by the user, which recieves the mixed output when it it played by the sound engine.
//! Interface to be implemented by the user, which receives the mixed output when it it played by the sound engine.
/** This can be used to store the sound output as .wav file or for creating a Oscillograph or similar.
Simply implement your own class derived from ISoundMixedOutputReceiver and use ISoundEngine::setMixedDataOutputReceiver
to let the audio driver know about it. */

View File

@@ -32,7 +32,7 @@ enum E_STOP_EVENT_CAUSE
};
//! Interface to be implemented by the user, which recieves sound stop events.
//! Interface to be implemented by the user, which receives sound stop events.
/** The interface has only one method to be implemented by the user: OnSoundStopped().
Implement this interface and set it via ISound::setSoundStopEventReceiver().
The sound stop event is guaranteed to be called when a sound or sound stream is finished,