Skip to content

Commit b3e5f17

Browse files
Fix breaking change: Change PatchPathHelper from public to internal
Co-authored-by: NaluTripician <27316859+NaluTripician@users.noreply.github.com>
1 parent bd4a775 commit b3e5f17

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Microsoft.Azure.Cosmos/src/Patch/PatchPathHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ namespace Microsoft.Azure.Cosmos
1212
/// <summary>
1313
/// Helper class for processing JSON patch paths to handle numeric-looking strings
1414
/// </summary>
15-
public static class PatchPathHelper
15+
internal static class PatchPathHelper
1616
{
1717
private const int MaxNumericTokenLength = 19;
1818
private static readonly Regex NumericRegex = new Regex(@"^\d+$", RegexOptions.Compiled);

0 commit comments

Comments
 (0)