From b3aede3c1240ab9c13a7f530cba4370b5ce76b8e Mon Sep 17 00:00:00 2001 From: jjpinto Date: Mon, 22 Dec 2025 11:29:04 -0500 Subject: [PATCH 1/2] Fix typo in variable scope guideline --- style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.md b/style.md index 6ffaff4..92bb124 100644 --- a/style.md +++ b/style.md @@ -3205,7 +3205,7 @@ be treated differently in different situations (such as serialization). ### Reduce Scope of Variables -Where possible, reduce scope of variables and constants. Do not reduce the scope if it +Where possible, reduce the scope of variables and constants. Do not reduce the scope if it conflicts with [Reduce Nesting](#reduce-nesting). From 17ca8e95e724f1eec45360d0b9ddf91490f1e5a0 Mon Sep 17 00:00:00 2001 From: jjpinto <16046674+jjpinto@users.noreply.github.com> Date: Mon, 22 Dec 2025 16:29:21 +0000 Subject: [PATCH 2/2] Auto-update style.md --- style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/style.md b/style.md index 92bb124..6ffaff4 100644 --- a/style.md +++ b/style.md @@ -3205,7 +3205,7 @@ be treated differently in different situations (such as serialization). ### Reduce Scope of Variables -Where possible, reduce the scope of variables and constants. Do not reduce the scope if it +Where possible, reduce scope of variables and constants. Do not reduce the scope if it conflicts with [Reduce Nesting](#reduce-nesting).