Unverified Commit 482dda7a authored by Zelda Hessler's avatar Zelda Hessler Committed by GitHub
Browse files

update: don't run generated doc tests (#896)

fix: various small typos
parent d7a3eea7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ class RetryConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustomiz
                    /// Set the retry_config for the builder
                    ///
                    /// ## Examples
                    /// ```rust
                    /// ```no_run
                    /// use $moduleUseName::config::Config;
                    /// use #{RetryConfig};
                    ///
@@ -119,7 +119,7 @@ class RetryConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustomiz
                    /// Set the retry_config for the builder
                    ///
                    /// ## Examples
                    /// ```rust
                    /// ```no_run
                    /// use $moduleUseName::config::{Builder, Config};
                    /// use #{RetryConfig};
                    ///
+4 −2
Original line number Diff line number Diff line
@@ -95,7 +95,8 @@ class SleepImplProviderConfig(codegenContext: CodegenContext) : ConfigCustomizat
                    /// Set the sleep_impl for the builder
                    ///
                    /// ## Examples
                    /// ```rust
                    ///
                    /// ```no_run
                    /// use $moduleUseName::config::Config;
                    /// use #{AsyncSleep};
                    /// use #{Sleep};
@@ -120,7 +121,8 @@ class SleepImplProviderConfig(codegenContext: CodegenContext) : ConfigCustomizat
                    /// Set the sleep_impl for the builder
                    ///
                    /// ## Examples
                    /// ```rust
                    ///
                    /// ```no_run
                    /// use $moduleUseName::config::{Builder, Config};
                    /// use #{AsyncSleep};
                    /// use #{Sleep};
+4 −2
Original line number Diff line number Diff line
@@ -94,7 +94,8 @@ class TimeoutConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustom
                    /// Set the timeout_config for the builder
                    ///
                    /// ## Examples
                    /// ```rust
                    ///
                    /// ```no_run
                    /// ## use std::time::Duration;
                    /// use $moduleUseName::config::Config;
                    /// use #{TimeoutConfig};
@@ -111,7 +112,8 @@ class TimeoutConfigProviderConfig(codegenContext: CodegenContext) : ConfigCustom
                    /// Set the timeout_config for the builder
                    ///
                    /// ## Examples
                    /// ```rust
                    ///
                    /// ```no_run
                    /// ## use std::time::Duration;
                    /// use $moduleUseName::config::{Builder, Config};
                    /// use #{TimeoutConfig};
+2 −2
Original line number Diff line number Diff line
@@ -411,7 +411,7 @@ class FluentClientGenerator(
                /// [SigV4-signed requests], the middleware looks like this:
                ///
                // Ignored as otherwise we'd need to pull in all these dev-dependencies.
                /// ```rust,ignore
                /// ```ignore
                /// use aws_endpoint::AwsEndpointStage;
                /// use aws_http::user_agent::UserAgentStage;
                /// use aws_sig_auth::middleware::SigV4SigningStage;
@@ -434,7 +434,7 @@ class FluentClientGenerator(
                ///         let signer = MapRequestLayer::for_mapper(SigV4SigningStage::new(SigV4Signer::new())); _signer: MapRequestLaye
                ///         let endpoint_resolver = MapRequestLayer::for_mapper(AwsEndpointStage); _endpoint_resolver: MapRequestLayer<Aw
                ///         let user_agent = MapRequestLayer::for_mapper(UserAgentStage::new()); _user_agent: MapRequestLayer<UserAgentSt
                ///         // These layers can be considered as occuring in order, that is:
                ///         // These layers can be considered as occurring in order, that is:
                ///         // 1. Resolve an endpoint
                ///         // 2. Add a user agent
                ///         // 3. Sign