diff options
author | naglis <827324+naglis@users.noreply.github.com> | 2023-08-22 16:09:02 +0300 |
---|---|---|
committer | jaseg <136313+jaseg@users.noreply.github.com> | 2023-10-12 10:12:32 +0200 |
commit | 0bfd64d1f1923ca1039ca34f3ff9f8830bc47102 (patch) | |
tree | 4c2a599c96e3cdad6b97e3b572ca05bbbbdb1e54 | |
parent | fa3b0fdad1f4ed4367f0085a301186fa6f9be51c (diff) | |
download | python-mpv-0bfd64d1f1923ca1039ca34f3ff9f8830bc47102.tar.gz python-mpv-0bfd64d1f1923ca1039ca34f3ff9f8830bc47102.tar.bz2 python-mpv-0bfd64d1f1923ca1039ca34f3ff9f8830bc47102.zip |
Fix typo in README
-rw-r--r-- | README.rst | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -70,7 +70,7 @@ Threading ~~~~~~~~~ The ``mpv`` module starts one thread for event handling, since MPV sends events that must be processed quickly. The -event queue has a fixed maxmimum size and some operations can cause a large number of events to be sent. +event queue has a fixed maximum size and some operations can cause a large number of events to be sent. If you want to handle threading yourself, you can pass ``start_event_thread=False`` to the ``MPV`` constructor and manually call the ``MPV`` object's ``_loop`` function. If you have some strong need to not use threads and use some |