From c2e4e5dd0db2c7c2dfda15e51fb68ba77b9351b1 Mon Sep 17 00:00:00 2001 From: rakichkin <95534778+rakichkin@users.noreply.github.com> Date: Tue, 30 Sep 2025 23:23:39 +0300 Subject: [PATCH] Fix string interpolation typo in AsyncCultureEx1 code snippet --- .../System.Globalization/CultureInfo/csharp/asyncculture1.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/csharp/asyncculture1.cs b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/csharp/asyncculture1.cs index bda34aac05faa..f92562bd469ad 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/csharp/asyncculture1.cs +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/csharp/asyncculture1.cs @@ -14,7 +14,7 @@ public static void Main() string FormatDelegate() { string output = $"Formatting using the {CultureInfo.CurrentCulture.Name} " + - "culture on thread {Thread.CurrentThread.ManagedThreadId}.\n"; + $"culture on thread {Thread.CurrentThread.ManagedThreadId}.\n"; foreach (decimal value in values) output += $"{value.ToString(formatString)} ";