Skip to content

Commit 08206fd

Browse files
pkulikovRon Petrusha
authored andcommitted
Update AdditionOperator.cs (#975)
1 parent cbd0f72 commit 08206fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

csharp/language-reference/operators/AdditionOperator.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ private static void NumericAddition()
2424
private static void StringConcatenation()
2525
{
2626
// <SnippetAddStrings>
27-
Console.WriteLine("Forgot " + " white space");
27+
Console.WriteLine("Forgot" + "white space");
2828
Console.WriteLine("Probably the oldest constant: " + Math.PI);
2929
// Output:
30-
// Forgot white space
30+
// Forgotwhite space
3131
// Probably the oldest constant: 3.14159265358979
3232
// </SnippetAddStrings>
3333

0 commit comments

Comments
 (0)