File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ def print_error(*args):
40
40
41
41
42
42
def xrun (delay ):
43
- print_error ("An xrun occured , increase JACK's period size?" )
43
+ print_error ("An xrun occurred , increase JACK's period size?" )
44
44
45
45
46
46
def shutdown (status , reason ):
@@ -109,7 +109,7 @@ def process(frames):
109
109
except KeyboardInterrupt :
110
110
parser .exit ('\n Interrupted by user' )
111
111
except (queue .Full ):
112
- # A timeout occured , i.e. there was an error in the callback
112
+ # A timeout occurred , i.e. there was an error in the callback
113
113
parser .exit (1 )
114
114
except Exception as e :
115
115
parser .exit (type (e ).__name__ + ': ' + str (e ))
Original file line number Diff line number Diff line change @@ -729,7 +729,7 @@ def set_shutdown_callback(self, callback):
729
729
730
730
After server shutdown, the client is *not* deallocated by
731
731
JACK, the user (that's you!) is responsible to properly
732
- use `close()` to release client ressources .
732
+ use `close()` to release client resources .
733
733
Alternatively, the `Client` object can be used as a
734
734
*context manager* in a *with statement*, which takes care
735
735
of activating, deactivating and closing the client
@@ -1256,7 +1256,7 @@ def set_xrun_callback(self, callback):
1256
1256
----------
1257
1257
callback : callable
1258
1258
User-supplied function that is called whenever an xrun has
1259
- occured . It must have this signature::
1259
+ occurred . It must have this signature::
1260
1260
1261
1261
callback(delayed_usecs: float) -> None
1262
1262
You can’t perform that action at this time.
0 commit comments