Skip to content

Commit b773845

Browse files
bretthoescaptainsafia
authored andcommitted
Correct typo in ProtectedPersonalDataAttribute.cs & PersonalDataAttribute.cs (#58664)
1 parent 59b5739 commit b773845

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Identity/Extensions.Core/src/PersonalDataAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace Microsoft.AspNetCore.Identity;
77

88
/// <summary>
9-
/// Used to indicate that a something is considered personal data.
9+
/// Used to indicate that something is considered personal data.
1010
/// </summary>
1111
[AttributeUsage(AttributeTargets.Property)]
1212
public class PersonalDataAttribute : Attribute

src/Identity/Extensions.Core/src/ProtectedPersonalDataAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace Microsoft.AspNetCore.Identity;
55

66
/// <summary>
7-
/// Used to indicate that a something is considered personal data and should be protected.
7+
/// Used to indicate that something is considered personal data and should be protected.
88
/// </summary>
99
public class ProtectedPersonalDataAttribute : PersonalDataAttribute
1010
{ }

0 commit comments

Comments
 (0)