Skip to content

Commit c0cd9db

Browse files
CalvinAllenRon Petrusha
authored andcommitted
Updates inline comments to specify correct output. (#486)
1 parent a2056cb commit c0cd9db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/csharp/concepts/structs/literals.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
var x = 123_456;
1010
string s2 = "I can use an underscore as a digit separator: " + x;
11-
// Outputs: "I can use an underscore as a digit separator:
11+
// Outputs: "I can use an underscore as a digit separator: 123456"
1212
Console.WriteLine(s2);
1313

1414
var b = 0b1010_1011_1100_1110_1111;
1515
string s3 = "I can specify bit patterns: " + b.ToString();
16-
// Outputs: "I can specify bit patterns: 703727
16+
// Outputs: "I can specify bit patterns: 703727"
1717
Console.WriteLine(s3);

0 commit comments

Comments
 (0)