Skip to content

Commit 56ca98b

Browse files
Adding whitespace after 'for' keyword (#33750)
1 parent 4913db4 commit 56ca98b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/tour-of-csharp/tutorials/branches-and-loops.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ items:
201201
`for` loop. Try this code in the interactive window:
202202
203203
```csharp
204-
for(int counter = 0; counter < 10; counter++)
204+
for (int counter = 0; counter < 10; counter++)
205205
{
206206
Console.WriteLine($"Hello World! The counter is {counter}");
207207
}

0 commit comments

Comments
 (0)