summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2019-09-27 12:58:36 +0200
committerwm4 <wm4@nowhere>2019-09-27 12:59:10 +0200
commitd8f02dc5d589758caaaf2ea87926932df5895197 (patch)
treedaf2546171153eaca998b13d19e0e8f599a39575
parent69e4a5772ab56cf439b3e70726b131008259fb57 (diff)
downloadmpv-d8f02dc5d589758caaaf2ea87926932df5895197.tar.bz2
mpv-d8f02dc5d589758caaaf2ea87926932df5895197.tar.xz
stream_cb: fix a typo in a comment
-rw-r--r--libmpv/stream_cb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libmpv/stream_cb.h b/libmpv/stream_cb.h
index 5971aa2c32..45e81b8e38 100644
--- a/libmpv/stream_cb.h
+++ b/libmpv/stream_cb.h
@@ -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.
*