Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in docs #2800

Merged
merged 1 commit into from
Sep 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/en/docs/configuring-sdk/endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ func main() {
The following sample program demonstrates the interaction between
`BaseEndpoint` and `EndpointResolverV2`. **This is an advanced use case:**

```kotlin
```go
import (
"context"
"fmt"
Expand All @@ -181,7 +181,7 @@ func (*resolverV2) ResolveEndpoint(ctx context.Context, params s3.EndpointParame
}

func main() {
cfg, err := config.LoadDefaultConfig(context.Background()
cfg, err := config.LoadDefaultConfig(context.Background())
if (err != nil) {
log.Fatal(err)
}
Expand Down
Loading