Skip to content

Commit

Permalink
fix: Indententation for 6.26 (#571)
Browse files Browse the repository at this point in the history
  • Loading branch information
danOIntellitect authored Oct 26, 2023
1 parent 070d29d commit 6589099
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Chapter06/Listing06.26.DefiningAPrimaryConstructor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ public static void Main()
}

#region INCLUDE
#region HIGHLIGHT
// Employee constructor
#region HIGHLIGHT
// Employee constructor
public class Employee(string firstName, string lastName)
{
public string FirstName { get; set; } = firstName;
public string LastName { get; set; } = lastName;
#endregion HIGHLIGHT
#endregion HIGHLIGHT
public string? Salary { get; set; } = "Not Enough";

#region EXCLUDE
Expand Down

0 comments on commit 6589099

Please sign in to comment.