Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
DamienDeepgram committed Jul 17, 2024
1 parent 43a0dc6 commit ad7f030
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions src/manage/keys/mod_keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down Expand Up @@ -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> {
Expand Down Expand Up @@ -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> {
Expand Down Expand Up @@ -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> {
Expand Down
8 changes: 4 additions & 4 deletions src/manage/projects/mod_projects.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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> {
Expand Down Expand Up @@ -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> {
Expand Down Expand Up @@ -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> {
Expand Down Expand Up @@ -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> {
Expand Down
4 changes: 2 additions & 2 deletions src/manage/usage/get_usage_options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -177,15 +177,15 @@ 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])
/// .build();
/// ```
///
/// ```
/// # 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])
Expand Down
8 changes: 4 additions & 4 deletions src/manage/usage/mod_usage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
/// # };
Expand Down Expand Up @@ -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,
/// # };
Expand Down Expand Up @@ -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,
/// # };
Expand Down Expand Up @@ -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,
/// # };
Expand Down

0 comments on commit ad7f030

Please sign in to comment.