Skip to content

Commit 4a13633

Browse files
authored
Correct typo in regular-expression-source-generators.md - Issue #41176 (#41181)
1 parent e2565bf commit 4a13633

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/standard/base-types/regular-expression-source-generators.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: ".NET regular expression source generators"
33
description: Learn how to use regular expression source generators to optimize the performance of matching algorithms in .NET.
44
ms.topic: conceptual
5-
ms.date: 04/19/2024
5+
ms.date: 05/29/2024
66
author: IEvangelist
77
ms.author: dapine
88
zone_pivot_groups: dotnet-version-7-8
@@ -78,7 +78,7 @@ You can set breakpoints in it, you can step through it, and you can use it as a
7878

7979
## Inside the source-generated files
8080

81-
With .NET 7, both the source generator and `RegexCompiler` were almost entirely rewritten, fundamentally changing the structure of the generated code. This approach has been extended to handle all constructs (with one caveat), and both `RegexCompiler` and the source generator still map mostly 1:1 with each other, following the new approach. Consider the source generator output for one of the primary functions from the `(a|bc)d` expression:
81+
With .NET 7, both the source generator and `RegexCompiler` were almost entirely rewritten, fundamentally changing the structure of the generated code. This approach has been extended to handle all constructs (with one caveat), and both `RegexCompiler` and the source generator still map mostly 1:1 with each other, following the new approach. Consider the source generator output for one of the primary functions from the `abc|def` expression:
8282

8383
:::zone pivot="dotnet-8-0"
8484

0 commit comments

Comments
 (0)