Skip to content

Commit 80ae691

Browse files
committed
DOC: fix a few issues
1 parent 02a5988 commit 80ae691

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

NEWS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Version 0.4.1 (2016-05-24):
3636

3737
Version 0.4.0 (2015-09-17):
3838
* new argument to xrun callback (see `jack.Client.set_xrun_callback()`),
39-
`jack.Client.xrun_delayed_usecs` was removed
39+
``jack.Client.xrun_delayed_usecs`` was removed
4040
* `jack.Client.transport_reposition_struct()`
4141
* callbacks no longer have to return anything, instead they can raise
4242
`jack.CallbackExit` on error

src/jack.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2820,7 +2820,7 @@ def get_property(subject, key):
28202820
Client.remove_property
28212821
Client.remove_properties
28222822
Client.remove_all_properties
2823-
set_property_change_callback
2823+
Client.set_property_change_callback
28242824
28252825
"""
28262826
subject = _uuid_parse(subject)
@@ -2856,7 +2856,7 @@ def get_properties(subject):
28562856
Client.remove_property
28572857
Client.remove_properties
28582858
Client.remove_all_properties
2859-
set_property_change_callback
2859+
Client.set_property_change_callback
28602860
28612861
"""
28622862
subject = _uuid_parse(subject)
@@ -2886,7 +2886,7 @@ def get_all_properties():
28862886
Client.remove_property
28872887
Client.remove_properties
28882888
Client.remove_all_properties
2889-
set_property_change_callback
2889+
Client.set_property_change_callback
28902890
28912891
"""
28922892
descs = _ffi.new('jack_description_t**')

0 commit comments

Comments
 (0)