Skip to content

Commit

Permalink
fix(docs: client construction): wrong type name (#3633)
Browse files Browse the repository at this point in the history
## Motivation and Context
Docs are wrong.

## Description
The docs are referring to the wrong type name (`Config`).
The example right below the change uses the right type name
(`$crateName::config::Builder`).

## Testing
n/a

## Checklist

----

_By submitting this pull request, I confirm that you can use, modify,
copy, and redistribute this contribution, under the terms of your
choice._
  • Loading branch information
problame authored Jun 28, 2024
1 parent 4beac5f commit 24a011b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ object AwsDocs {
Occasionally, SDKs may have additional service-specific values that can be set on the [`Config`] that
is absent from [`SdkConfig`], or slightly different settings for a specific client may be desired.
The [`Config`] struct implements `From<&SdkConfig>`, so setting these specific settings can be
The [`Builder`] struct implements `From<&SdkConfig>`, so setting these specific settings can be
done as follows:
```rust,no_run
Expand Down

0 comments on commit 24a011b

Please sign in to comment.