From 41a1ad24bcb2b017d21c1a9db5e47c24022de768 Mon Sep 17 00:00:00 2001 From: "denizirgin@gmail.com" Date: Sun, 10 Sep 2023 21:34:17 +0300 Subject: [PATCH] adapt changes to localstack docs structure and guidelines. #790 --- content/en/user-guide/integrations/sdks/dotnet/index.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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(); ```