Skip to content

Commit 6c4049d

Browse files
committed
pr feedbacj
1 parent b5ebbfe commit 6c4049d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Exceptionless.DateTimeExtensions/FormatParsers/FormatParsers/PartParsers/WildcardPartParser.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ namespace Exceptionless.DateTimeExtensions.FormatParsers.PartParsers;
66
[Priority(1)]
77
public class WildcardPartParser : IPartParser
88
{
9-
private static readonly Regex _wildCardRegex = new(@"\G\s*\*(?=\s|\]|\}|$)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
9+
private static readonly Regex _wildcardRegex = new(@"\G\s*\*(?=\s|\]|\}|$)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
1010

11-
public Regex Regex => _wildCardRegex;
11+
public Regex Regex => _wildcardRegex;
1212

1313
public DateTimeOffset? Parse(Match match, DateTimeOffset relativeBaseTime, bool isUpperLimit)
1414
{

0 commit comments

Comments
 (0)