Skip to content

Commit 19589a5

Browse files
committed
Update links
1 parent 4cd2a24 commit 19589a5

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/JsonApiDotNetCore.Annotations/Configuration/ResourceType.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ private static IReadOnlySet<AttrAttribute> GetAttributesInTypeOrDerived(Resource
289289
}
290290

291291
// Hiding base members using the 'new' keyword instead of 'override' (effectively breaking inheritance) is currently not supported.
292-
// https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/knowing-when-to-use-override-and-new-keywords
292+
// https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/knowing-when-to-use-override-and-new-keywords
293293
HashSet<AttrAttribute> attributesInDerivedTypes = [];
294294

295295
foreach (AttrAttribute attributeInDerivedType in resourceType.DirectlyDerivedTypes
@@ -330,7 +330,7 @@ private static IReadOnlySet<RelationshipAttribute> GetRelationshipsInTypeOrDeriv
330330
}
331331

332332
// Hiding base members using the 'new' keyword instead of 'override' (effectively breaking inheritance) is currently not supported.
333-
// https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/knowing-when-to-use-override-and-new-keywords
333+
// https://learn.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/knowing-when-to-use-override-and-new-keywords
334334
HashSet<RelationshipAttribute> relationshipsInDerivedTypes = [];
335335

336336
foreach (RelationshipAttribute relationshipInDerivedType in resourceType.DirectlyDerivedTypes

test/TestBuildingBlocks/FakerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public static Faker<T> MakeDeterministic<T>(this Faker<T> faker, DateTime? syste
1414
faker.UseSeed(seed);
1515

1616
// Setting the system DateTime to kind Utc, so that faker calls like PastOffset() don't depend on the system time zone.
17-
// See https://docs.microsoft.com/en-us/dotnet/api/system.datetimeoffset.op_implicit?view=net-6.0#remarks
17+
// See https://learn.microsoft.com/en-us/dotnet/api/system.datetimeoffset.op_implicit#remarks
1818
faker.UseDateTimeReference(systemTimeUtc ?? IntegrationTest.DefaultDateTimeUtc.UtcDateTime);
1919

2020
return faker;

0 commit comments

Comments
 (0)