stream_cb: fix a typo in a comment

This commit is contained in:
wm4 2019-09-27 12:58:36 +02:00
parent 69e4a5772a
commit d8f02dc5d5
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,7 @@ extern "C" {
* Read callback used to implement a custom stream. The semantics of the
* callback match read(2) in blocking mode. Short reads are allowed (you can
* return less bytes than requested, and libmpv will retry reading the rest
* with a nother call). If no data can be immediately read, the callback must
* with another call). If no data can be immediately read, the callback must
* block until there is new data. A return of 0 will be interpreted as final
* EOF, although libmpv might retry the read, or seek to a different position.
*