Skip to content

Commit a2d4bba

Browse files
committed
fix typo issue
1 parent 080d225 commit a2d4bba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

learn-pr/wwl-azure/implement-class-properties-methods/includes/4-examine-automatically-implemented-properties.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public class Person
118118

119119
```
120120

121-
This implementation works because the `FirstName` and `LastName` properties are readonly. People can change their name. Updating the `FirstName` and `LastName` properties to allow `set` accessors requires you to invalidate any cached value for `fullName`. You modify the `set` accessors of the `FirstName` and `LastName` property so the `fullNam`e field is calculated again:
121+
This implementation works because the `FirstName` and `LastName` properties are readonly. People can change their name. Updating the `FirstName` and `LastName` properties to allow `set` accessors requires you to invalidate any cached value for `fullName`. You modify the `set` accessors of the `FirstName` and `LastName` property so the `fullName` field is calculated again:
122122

123123
```csharp
124124

0 commit comments

Comments
 (0)