diff --git a/src/manage/keys/mod_keys.rs b/src/manage/keys/mod_keys.rs index db8c90f8..1f1359e3 100644 --- a/src/manage/keys/mod_keys.rs +++ b/src/manage/keys/mod_keys.rs @@ -50,7 +50,7 @@ impl Keys<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::keys::::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::keys::options::{Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { @@ -87,7 +87,7 @@ impl Keys<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::keys::::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::keys::options::{Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { @@ -129,7 +129,7 @@ impl Keys<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::keys::::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::keys::options::{Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { @@ -174,7 +174,7 @@ impl Keys<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::keys::::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::keys::options::{Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { diff --git a/src/manage/projects/mod_projects.rs b/src/manage/projects/mod_projects.rs index f38f0b36..70e89844 100644 --- a/src/manage/projects/mod_projects.rs +++ b/src/manage/projects/mod_projects.rs @@ -49,7 +49,7 @@ impl Projects<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::projects::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::{projects::options::Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { @@ -83,7 +83,7 @@ impl Projects<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::projects::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::{projects::options::Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { @@ -120,7 +120,7 @@ impl Projects<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::projects::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::{projects::options::Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { @@ -167,7 +167,7 @@ impl Projects<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::projects::options::{Options, Deepgram, DeepgramError}; + /// # use deepgram::manage::{projects::options::Options, Deepgram, DeepgramError}; /// # /// # #[tokio::main] /// # async fn main() -> Result<(), DeepgramError> { diff --git a/src/manage/usage/get_usage_options.rs b/src/manage/usage/get_usage_options.rs index a98ee7e9..926cc2c9 100644 --- a/src/manage/usage/get_usage_options.rs +++ b/src/manage/usage/get_usage_options.rs @@ -177,7 +177,7 @@ impl OptionsBuilder { /// # Examples /// /// ``` - /// # use deepgram::manage::mod_usage::get_usage_options::{Method, Options}; + /// # use deepgram::manage::usage::get_usage_options::{Method, Options}; /// # /// let options = Options::builder() /// .method([Method::Sync, Method::Streaming]) @@ -185,7 +185,7 @@ impl OptionsBuilder { /// ``` /// /// ``` - /// # use deepgram::manage::mod_usage::get_usage_options::{Method, Options}; + /// # use deepgram::manage::usage::get_usage_options::{Method, Options}; /// # /// let options1 = Options::builder() /// .method([Method::Sync]) diff --git a/src/manage/usage/mod_usage.rs b/src/manage/usage/mod_usage.rs index fc70b47e..5d3c9899 100644 --- a/src/manage/usage/mod_usage.rs +++ b/src/manage/usage/mod_usage.rs @@ -48,7 +48,7 @@ impl Usage<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::{ + /// # use deepgram::{manage:: /// # usage::{get_fields_options, get_usage_options, list_requests_options}, /// # Deepgram, DeepgramError, /// # }; @@ -101,7 +101,7 @@ impl Usage<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::{ + /// # use deepgram::{manage:: /// # usage::{get_fields_options, get_usage_options, list_requests_options}, /// # Deepgram, DeepgramError, /// # }; @@ -147,7 +147,7 @@ impl Usage<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::{ + /// # use deepgram::{manage:: /// # usage::{get_fields_options, get_usage_options, list_requests_options}, /// # Deepgram, DeepgramError, /// # }; @@ -197,7 +197,7 @@ impl Usage<'_> { /// ```no_run /// # use std::env; /// # - /// # use deepgram::manage::{ + /// # use deepgram::{manage:: /// # usage::{get_fields_options, get_usage_options, list_requests_options}, /// # Deepgram, DeepgramError, /// # };