diff --git a/_rules/1562.md b/_rules/1562.md index cc01cba8..19e5f3ff 100644 --- a/_rules/1562.md +++ b/_rules/1562.md @@ -6,6 +6,6 @@ severity: 1 --- They make code less understandable and might cause people to introduce bugs. Instead, return compound objects or tuples. -**Exception:** Calling and declaring members that implement the [TryParse](https://docs.microsoft.com/en-us/dotnet/api/system.int32.tryparse) pattern is allowed. For example: +**Exception:** Calling and declaring members that implement the [TryParse](https://learn.microsoft.com/en-us/dotnet/api/system.int32.tryparse) pattern is allowed. For example: bool success = int.TryParse(text, out int number);