diff --git a/tapo/src/api/api_client.rs b/tapo/src/api/api_client.rs index 00deeb0..25a5366 100644 --- a/tapo/src/api/api_client.rs +++ b/tapo/src/api/api_client.rs @@ -62,7 +62,7 @@ pub struct ApiClient { impl ApiClient { /// Returns a new instance of [`ApiClient`]. /// It is cheaper to [`ApiClient::clone`] an existing instance than to create a new one when multiple devices need to be controller. - /// This is because [`ApiClient::clone`] reuses the underlying [`isahc::HttpClient`] and [`openssl::rsa::Rsa`] key. + /// This is because [`ApiClient::clone`] reuses the underlying [`reqwest::Client`]. /// /// # Arguments /// diff --git a/tapo/src/requests/play_alarm.rs b/tapo/src/requests/play_alarm.rs index 134cdf8..d295fbe 100644 --- a/tapo/src/requests/play_alarm.rs +++ b/tapo/src/requests/play_alarm.rs @@ -10,7 +10,7 @@ pub enum AlarmVolume { /// Mute the audio output from the alarm. /// This causes the alarm to be shown as triggered in the Tapo App /// without an audible sound, and makes the `in_alarm` property - /// in [`crate::DeviceInfoHubResult`] return as `true`. + /// in [`crate::responses::DeviceInfoHubResult`] return as `true`. Mute, /// Lowest volume. Low, @@ -94,7 +94,7 @@ pub enum AlarmDuration { /// This is useful for previewing the audio. /// /// # Limitations - /// The `in_alarm` field of [`crate::DeviceInfoHubResult`] will not remain `true` for the + /// The `in_alarm` field of [`crate::responses::DeviceInfoHubResult`] will not remain `true` for the /// duration of the audio track. Each audio track has a different runtime. /// /// Has no observable affect if the [`AlarmVolume::Mute`].