Skip to content

Commit a9d5841

Browse files
authored
Update docs/csharp/programming-guide/classes-and-structs/partial-classes-and-methods.md
1 parent 64f379c commit a9d5841

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/csharp/programming-guide/classes-and-structs/partial-classes-and-methods.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ There are several situations when splitting a class definition is desirable:
2121

2222
To split a class definition, use the [partial](../../language-reference/keywords/partial-type.md) keyword modifier. In practice, each partial class is typically defined in a separate file, making it easier to manage and expand the class over time.
2323

24-
The following Employee example demonstrates how the class might be divided across two files: Employee_Part1.cs and Employee_Part2.cs.
24+
The following `Employee` example demonstrates how the class might be divided across two files: Employee_Part1.cs and Employee_Part2.cs.
2525

2626
:::code language="csharp" source="snippets/partial-classes-and-methods/Program.cs" id="Snippet1":::
2727

0 commit comments

Comments
 (0)