Skip to content

Commit 6589099

Browse files
fix: Indententation for 6.26 (#571)
## Summary Fixes IntelliTect-dev/EssentialCSharp.Tooling#1965
1 parent 070d29d commit 6589099

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Chapter06/Listing06.26.DefiningAPrimaryConstructor.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ public static void Main()
1414
}
1515

1616
#region INCLUDE
17-
#region HIGHLIGHT
18-
// Employee constructor
17+
#region HIGHLIGHT
18+
// Employee constructor
1919
public class Employee(string firstName, string lastName)
2020
{
2121
public string FirstName { get; set; } = firstName;
2222
public string LastName { get; set; } = lastName;
23-
#endregion HIGHLIGHT
23+
#endregion HIGHLIGHT
2424
public string? Salary { get; set; } = "Not Enough";
2525

2626
#region EXCLUDE

0 commit comments

Comments
 (0)