Skip to content

Commit c9acbdc

Browse files
committed
daily-python: fix docstrings
1 parent 84d497e commit c9acbdc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/call_client/event_handler.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ impl PyEventHandler {
6969
/// Event emitted when the session with the dial-out remote end is
7070
/// established.
7171
///
72-
/// :param Mapping[str, Any] data: See :ref:`DailoutEvent`
72+
/// :param Mapping[str, Any] data: See :ref:`DialoutEvent`
7373
fn on_dialout_connected(&self, data: PyObject) -> PyResult<()> {
7474
Ok(())
7575
}
@@ -79,22 +79,22 @@ impl PyEventHandler {
7979
/// fatal to the media/SIP pipeline and will result in dialout-error being
8080
/// triggered.
8181
///
82-
/// :param Mapping[str, Any] data: See :ref:`DailoutEvent`
82+
/// :param Mapping[str, Any] data: See :ref:`DialoutEvent`
8383
fn on_dialout_error(&self, data: PyObject) -> PyResult<()> {
8484
Ok(())
8585
}
8686

8787
/// 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`.
8989
///
90-
/// :param Mapping[str, Any] data: See :ref:`DailoutEvent`
90+
/// :param Mapping[str, Any] data: See :ref:`DialoutEvent`
9191
fn on_dialout_stopped(&self, data: PyObject) -> PyResult<()> {
9292
Ok(())
9393
}
9494

9595
/// Event emitted when a dial-out warning occurs.
9696
///
97-
/// :param Mapping[str, Any] data: See :ref:`DailoutEvent`
97+
/// :param Mapping[str, Any] data: See :ref:`DialoutEvent`
9898
fn on_dialout_warning(&self, data: PyObject) -> PyResult<()> {
9999
Ok(())
100100
}

0 commit comments

Comments
 (0)