summaryrefslogtreecommitdiffstats
path: root/libmpv
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2015-10-22 19:36:38 +0200
committerwm4 <wm4@nowhere>2015-10-22 19:36:38 +0200
commit878f12885b7c847cda07635ad303db6be33b6684 (patch)
tree4cebe46f0b9d0c270e5a7d117e5a8d4631278e74 /libmpv
parent0a1a5707bfbcd8d35655499edcf6a7118aa519e7 (diff)
downloadmpv-878f12885b7c847cda07635ad303db6be33b6684.tar.bz2
mpv-878f12885b7c847cda07635ad303db6be33b6684.tar.xz
client API: fix typo and wording in a comment
Diffstat (limited to 'libmpv')
-rw-r--r--libmpv/client.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/libmpv/client.h b/libmpv/client.h
index fb4f379626..190b2ae4a0 100644
--- a/libmpv/client.h
+++ b/libmpv/client.h
@@ -69,9 +69,9 @@ extern "C" {
* ----------
*
* In general, the API user should run an event loop in order to receive events.
- * This even loop should call mpv_wait_event(), which will return once a new
- * mpv client API is available. It should also be possible to integrate client
- * API usage in other event loops (e.g. GUI toolkits) with the
+ * This event loop should call mpv_wait_event(), which will return once a new
+ * mpv client API is available. It is also possible to integrate client API
+ * usage in other event loops (e.g. GUI toolkits) with the
* mpv_set_wakeup_callback() function, and then polling for events by calling
* mpv_wait_event() with a 0 timeout.
*