Skip to content

Commit 4f2b287

Browse files
danmoseleyCopilot
andcommitted
Fix indentation in ReReduceTree
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 1e36038 commit 4f2b287

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions

src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/RegexNode.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ private void ReReduceTree()
463463
return;
464464
}
465465

466-
for (int i = 0, childCount = ChildCount(); i < childCount; i++)
466+
for (int i = 0, childCount = ChildCount(); i < childCount; i++)
467467
{
468468
Child(i).ReReduceTree();
469469
ReplaceChild(i, Child(i)); // ReplaceChild reduces the node in place

0 commit comments

Comments
 (0)