diff --git a/docs/manual/index.html b/docs/manual/index.html index 41fbe4d6..d5b2d78f 100644 --- a/docs/manual/index.html +++ b/docs/manual/index.html @@ -254,7 +254,7 @@ a.doc-navigation-l4 {

To use miniaudio, just include "miniaudio.h" like any other header and add "miniaudio.c" to your source tree. If you don't want to add it to your source tree you can compile and link to it like -any other library. Note that ABI compatiblity is not guaranteed between versions, even with bug +any other library. Note that ABI compatibility is not guaranteed between versions, even with bug fix releases, so take care if compiling as a shared object.

@@ -666,7 +666,7 @@ this manual.

-The code below shows how you can initialize an engine using it's default configuration. +The code below shows how you can initialize an engine using its default configuration.

 ma_result result;
@@ -764,7 +764,7 @@ Sounds are not started by default. Start a sound with ma_sound_stop(). When a sound is stopped, it is not rewound to the start. Use
 ma_sound_seek_to_pcm_frame(&sound, 0) to seek back to the start of a sound. By default, starting
 and stopping sounds happens immediately, but sometimes it might be convenient to schedule the sound
-the be started and/or stopped at a specific time. This can be done with the following functions:
+to be started and/or stopped at a specific time. This can be done with the following functions:
 

 ma_sound_set_start_time_in_pcm_frames()
@@ -936,7 +936,7 @@ You cannot use -std=c* compiler flag
 

-You can enable the use of AudioWorkets by defining MA_ENABLE_AUDIO_WORKLETS and then compiling +You can enable the use of AudioWorklets by defining MA_ENABLE_AUDIO_WORKLETS and then compiling with the following options:

    @@ -1715,7 +1715,7 @@ result = ma_data_source_set_range_in_pcm_frames(pDataSource, rangeBegInFrames, r This is useful if you have a sound bank where many sounds are stored in the same file and you want the data source to only play one of those sub-sounds. Note that once the range is set, everything -that takes a position, such as cursors and loop points, should always be relatvie to the start of +that takes a position, such as cursors and loop points, should always be relative to the start of the range. When the range is set, any previously defined loop point will be reset.

    @@ -1725,7 +1725,7 @@ they reach the end of the data source, but if you need to loop at a specific loc the following:

    -result = ma_data_set_loop_point_in_pcm_frames(pDataSource, loopBegInFrames, loopEndInFrames);
    +result = ma_data_source_set_loop_point_in_pcm_frames(pDataSource, loopBegInFrames, loopEndInFrames);
     if (result != MA_SUCCESS) {
         return result;  // Failed to set the loop point.
     }