Skip to content

Commit a034530

Browse files
Merge pull request #34047 from ShawnKupfer/WB887
AB#819205 - Fix extraneous exclamation mark in code per cx feedback
2 parents 5171337 + 5884bcf commit a034530

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

learn-pr/wwl-language/csharp-basic-formatting/includes/4-exercise-string-interpolation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Just as you did in the previous exercise, you can eliminate the temporary variab
7171
```c#
7272
int version = 11;
7373
string updateText = "Update to Windows";
74-
Console.WriteLine($"{updateText} {version}!");
74+
Console.WriteLine($"{updateText} {version}");
7575
```
7676

7777
1. Now, run the code. The result in the output console should be the same even if you simplified the code:

0 commit comments

Comments
 (0)