Skip to content

Commit 0bc4301

Browse files
Merge pull request #52895 from PhilKang0704/us-538711-localization-fix
US-538711: Content Update - Localization fix: <learn-pr> - Typo issue
2 parents a23f4a2 + a2d4bba commit 0bc4301

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)