@@ -1418,9 +1418,9 @@ extern SDL_DECLSPEC bool SDLCALL SDL_PutAudioStreamData(SDL_AudioStream *stream,
1418
1418
* A callback that fires for completed SDL_PutAudioStreamDataNoCopy() data.
1419
1419
*
1420
1420
* When using SDL_PutAudioStreamDataNoCopy() to provide data to an
1421
- * SDL_AudioStream, it's not safe to dispose of the data until the stream
1422
- * has completely consumed it. Often times it's difficult to know exactly
1423
- * when this has happened.
1421
+ * SDL_AudioStream, it's not safe to dispose of the data until the stream has
1422
+ * completely consumed it. Often times it's difficult to know exactly when
1423
+ * this has happened.
1424
1424
*
1425
1425
* This callback fires once when the stream no longer needs the buffer,
1426
1426
* allowing the app to easily free or reuse it.
@@ -1459,11 +1459,11 @@ typedef void (SDLCALL *SDL_AudioStreamDataCompleteCallback)(void *userdata, cons
1459
1459
* stream if it hasn't been changed.
1460
1460
*
1461
1461
* An optional callback may be provided, which is called when the stream no
1462
- * longer needs the data. Once this callback fires, the stream will not
1463
- * access the data again.
1462
+ * longer needs the data. Once this callback fires, the stream will not access
1463
+ * the data again.
1464
1464
*
1465
- * Note that there is still an allocation to store tracking information,
1466
- * so this function is more efficient for larger blocks of data. If you're
1465
+ * Note that there is still an allocation to store tracking information, so
1466
+ * this function is more efficient for larger blocks of data. If you're
1467
1467
* planning to put a few samples at a time, it will be more efficient to use
1468
1468
* SDL_PutAudioStreamData(), which allocates and buffers in blocks.
1469
1469
*
0 commit comments