From 7118eeea129b2407953e96fac7801beed27a56dc Mon Sep 17 00:00:00 2001 From: Simon Cropp Date: Tue, 20 Feb 2024 20:12:11 +1100 Subject: [PATCH] docs --- src/Polyfill/Regex/ValueMatch.cs | 3 ++- src/Polyfill/Regex/ValueMatchEnumerator.cs | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/Polyfill/Regex/ValueMatch.cs b/src/Polyfill/Regex/ValueMatch.cs index 4e411f89..bf19e147 100644 --- a/src/Polyfill/Regex/ValueMatch.cs +++ b/src/Polyfill/Regex/ValueMatch.cs @@ -1,5 +1,6 @@ // - +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. #pragma warning disable #if !NET7_0_OR_GREATER && FeatureMemory diff --git a/src/Polyfill/Regex/ValueMatchEnumerator.cs b/src/Polyfill/Regex/ValueMatchEnumerator.cs index 977bcf43..c24091fd 100644 --- a/src/Polyfill/Regex/ValueMatchEnumerator.cs +++ b/src/Polyfill/Regex/ValueMatchEnumerator.cs @@ -1,5 +1,6 @@ // - +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. #pragma warning disable #if !NET7_0_OR_GREATER && FeatureMemory @@ -8,7 +9,7 @@ using System.Diagnostics.CodeAnalysis; namespace System.Text.RegularExpressions; - +//https://github.com/dotnet/runtime/blob/main/src/libraries/System.Text.RegularExpressions/src/System/Text/RegularExpressions/Regex.EnumerateMatches.cs /// /// Represents an enumerator containing the set of successful matches found by iteratively applying a regular expression pattern to the input span. ///