From 47364d6571e6504033846dd4f1bef0130c221007 Mon Sep 17 00:00:00 2001
From: Genevieve Warren <24882762+gewarren@users.noreply.github.com>
Date: Wed, 11 Feb 2026 13:51:06 -0800
Subject: [PATCH] Fix XML comment formatting in Range.cs
---
src/System.CommandLine/System.Runtime.CompilerServices/Range.cs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/System.CommandLine/System.Runtime.CompilerServices/Range.cs b/src/System.CommandLine/System.Runtime.CompilerServices/Range.cs
index fa2dcc1d9b..42fb050f85 100644
--- a/src/System.CommandLine/System.Runtime.CompilerServices/Range.cs
+++ b/src/System.CommandLine/System.Runtime.CompilerServices/Range.cs
@@ -10,7 +10,7 @@ namespace System
{
/// Represents a type that can be used to index a collection either from the beginning or the end.
///
- /// is used by the C# compiler to support the >^ or ["index from end" operator](https://learn.microsoft.com/dotnet/csharp/language-reference/operators/member-access-operators#index-from-end-operator-):
+ /// is used by the C# compiler to support the ^ or ["index from end" operator](https://learn.microsoft.com/dotnet/csharp/language-reference/operators/member-access-operators#index-from-end-operator-):
///
/// int[] someArray = new int[5] { 1, 2, 3, 4, 5 };
/// int lastElement = someArray[^1]; // lastElement = 5