@@ -69,7 +69,7 @@ impl PyEventHandler {
69
69
/// Event emitted when the session with the dial-out remote end is
70
70
/// established.
71
71
///
72
- /// :param Mapping[str, Any] data: See :ref:`DailoutEvent `
72
+ /// :param Mapping[str, Any] data: See :ref:`DialoutEvent `
73
73
fn on_dialout_connected ( & self , data : PyObject ) -> PyResult < ( ) > {
74
74
Ok ( ( ) )
75
75
}
@@ -79,22 +79,22 @@ impl PyEventHandler {
79
79
/// fatal to the media/SIP pipeline and will result in dialout-error being
80
80
/// triggered.
81
81
///
82
- /// :param Mapping[str, Any] data: See :ref:`DailoutEvent `
82
+ /// :param Mapping[str, Any] data: See :ref:`DialoutEvent `
83
83
fn on_dialout_error ( & self , data : PyObject ) -> PyResult < ( ) > {
84
84
Ok ( ( ) )
85
85
}
86
86
87
87
/// Event emitted when the dial-out remote end disconnects the call or the
88
- /// call is stopped by calling :ref :`daily.CallClient.stop_dialout`.
88
+ /// call is stopped by calling :func :`daily.CallClient.stop_dialout`.
89
89
///
90
- /// :param Mapping[str, Any] data: See :ref:`DailoutEvent `
90
+ /// :param Mapping[str, Any] data: See :ref:`DialoutEvent `
91
91
fn on_dialout_stopped ( & self , data : PyObject ) -> PyResult < ( ) > {
92
92
Ok ( ( ) )
93
93
}
94
94
95
95
/// Event emitted when a dial-out warning occurs.
96
96
///
97
- /// :param Mapping[str, Any] data: See :ref:`DailoutEvent `
97
+ /// :param Mapping[str, Any] data: See :ref:`DialoutEvent `
98
98
fn on_dialout_warning ( & self , data : PyObject ) -> PyResult < ( ) > {
99
99
Ok ( ( ) )
100
100
}
0 commit comments