Skip to content

Commit b226480

Browse files
committed
fix tests
1 parent c7fcb5a commit b226480

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

misc_docs/syntax/extension_regular_expression.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ var result = regex.test("hello world");
2626

2727
* [Regular Expressions](/docs/manual/latest/primitive-types#regular-expression)
2828
* [Extension Point Attributes](/docs/manual/latest/attribute#extension-point)
29-
* [Re API](/docs/manual/latest/api/core/re)
29+
* [RegExp API](/docs/manual/latest/api/core/regexp)

pages/docs/manual/latest/primitive-types.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ var r = /b/g;
120120

121121
</CodeTab>
122122

123-
A regular expression like the above has the type `Re.t`. The [Re](api/core/re) module contains the regular expression helpers you have seen in JS.
123+
A regular expression like the above has the type `Re.t`. The [RegExp](api/core/regexp) module contains the regular expression helpers you have seen in JS.
124124

125125
## Boolean
126126

0 commit comments

Comments
 (0)