diff --git a/content/en/user-guide/integrations/sdks/dotnet/index.md b/content/en/user-guide/integrations/sdks/dotnet/index.md index 6720e87fd2..c48991d2e4 100644 --- a/content/en/user-guide/integrations/sdks/dotnet/index.md +++ b/content/en/user-guide/integrations/sdks/dotnet/index.md @@ -76,8 +76,7 @@ If you're working with .NET and LocalStack, you have a few options. In addition ### How it Works -- Instead of manually setting the endpoint configurations when initializing a client, `LocalStack.NET` offers methods that handle these details. -- The library aims to reduce the boilerplate required to set up LocalStack clients in .NET. +Instead of manually setting the endpoint configurations when initializing a client, `LocalStack.NET` offers methods that handle these details. The library aims to reduce the boilerplate required to set up LocalStack clients in .NET. ### Example Usage @@ -106,8 +105,8 @@ var sessionOptions = new SessionOptions(); var configOptions = new ConfigOptions(); ISession session = SessionStandalone.Init() - .WithSessionOptions(sessionOptions) - .WithConfigurationOptions(configOptions).Create(); + .WithSessionOptions(sessionOptions) + .WithConfigurationOptions(configOptions).Create(); var amazonS3Client = session.CreateClientByImplementation(); ```