From a007f3dc1c76d96cba63ecd9562cf711c0dec629 Mon Sep 17 00:00:00 2001 From: Dominik Nakamura Date: Tue, 29 Dec 2020 21:49:02 +0900 Subject: [PATCH] Fix some links to private elements --- README.md | 2 -- src/requests/mod.rs | 3 +-- src/responses/mod.rs | 2 +- 3 files changed, 2 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6617b45..3b6aa69 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,6 @@ obws = "0.1.0" In addition, you will need to use the [tokio](https://tokio.rs) runtime (currently `v0.3.x`), to use this library as it makes heavy use of async/await and is bound to this runtime. - [cargo-edit]: https://github.com/killercup/cargo-edit ### Example @@ -57,7 +56,6 @@ async fn main() -> Result<()> { Ok(()) } - ``` ## License diff --git a/src/requests/mod.rs b/src/requests/mod.rs index 8448d11..3a480ea 100644 --- a/src/requests/mod.rs +++ b/src/requests/mod.rs @@ -833,8 +833,7 @@ pub struct Bounds { } /// Request information for -/// [`reorder_scene_items`](crate::client::Scenes::reorder_scene_items) as part of -/// [`ReorderLineItems`](RequestType::ReorderSceneItems). +/// [`reorder_scene_items`](crate::client::Scenes::reorder_scene_items). #[skip_serializing_none] #[derive(Debug, Default, Serialize)] pub struct Scene<'a> { diff --git a/src/responses/mod.rs b/src/responses/mod.rs index 52d253f..eb4220a 100644 --- a/src/responses/mod.rs +++ b/src/responses/mod.rs @@ -48,7 +48,7 @@ pub struct Version { #[serde(deserialize_with = "de::string_comma_list")] pub available_requests: HashSet, /// List of supported formats for features that use image export (like the - /// [`TakeSourceScreenshot`](crate::requests::RequestType::TakeSourceScreenshot) request type) + /// [`take_source_screenshot`](crate::client::Sources::take_source_screenshot) request) /// formatted as a comma-separated list string. #[serde(deserialize_with = "de::string_comma_list")] pub supported_image_export_formats: HashSet,