From 015adffd66d4cd0ec0866289c6409038abc3599f Mon Sep 17 00:00:00 2001 From: Dennis Doomen Date: Wed, 25 Mar 2026 07:11:25 -0700 Subject: [PATCH] Update AV1562 guideline Split from #298. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- _rules/1562.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);