Skip to content

Commit f3d00f5

Browse files
authored
Fix string interpolation typo in AsyncCultureEx1 code snippet (#48798)
1 parent f9832a5 commit f3d00f5

File tree

1 file changed

+1
-1
lines changed
  • docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/csharp

1 file changed

+1
-1
lines changed

docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/csharp/asyncculture1.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static void Main()
1414
string FormatDelegate()
1515
{
1616
string output = $"Formatting using the {CultureInfo.CurrentCulture.Name} " +
17-
"culture on thread {Thread.CurrentThread.ManagedThreadId}.\n";
17+
$"culture on thread {Thread.CurrentThread.ManagedThreadId}.\n";
1818
foreach (decimal value in values)
1919
output += $"{value.ToString(formatString)} ";
2020

0 commit comments

Comments
 (0)