client API: fix typo and wording in a comment

This commit is contained in:
wm4 2015-10-22 19:36:38 +02:00
parent 0a1a5707bf
commit 878f12885b
1 changed files with 3 additions and 3 deletions

View File

@ -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.
*