File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ const currencyAmount = buildRegExp([
8989]);
9090```
9191
92- See [ Types] ( https://callstack.github.io/ts-regex-builder/api/types ) for more info.
92+ See [ Types API doc ] ( https://callstack.github.io/ts-regex-builder/api/types ) for more info.
9393
9494### Regex Builders
9595
@@ -98,7 +98,7 @@ See [Types](https://callstack.github.io/ts-regex-builder/api/types) for more inf
9898| ` buildRegExp(...) ` | ` /.../ ` | Create ` RegExp ` instance |
9999| ` buildRegExp(..., { ignoreCase: true }) ` | ` /.../i ` | Create ` RegExp ` instance with flags |
100100
101- See [ Regex Builder API doc] ( https://callstack.github.io/ts-regex-builder/api/builder ) for more info.
101+ See [ Builder API doc] ( https://callstack.github.io/ts-regex-builder/api/builder ) for more info.
102102
103103### Regex Constructs
104104
@@ -111,7 +111,7 @@ See [Regex Builder API doc](https://callstack.github.io/ts-regex-builder/api/bui
111111| ` lookbehind(...) ` | ` (?<=...) ` | Match preceding text without consuming it |
112112| ` negativeLookbehind(...) ` | ` (?<!...) ` | Reject preceding text without consuming it |
113113
114- See [ Regex Constructs API doc] ( https://callstack.github.io/ts-regex-builder/api/constructs ) for more info.
114+ See [ Constructs API doc] ( https://callstack.github.io/ts-regex-builder/api/constructs ) for more info.
115115
116116> [ !NOTE]
117117> TS Regex Builder does not have a construct for non-capturing groups. Such groups are implicitly added when required.
@@ -156,7 +156,7 @@ See [Anchors API doc](https://callstack.github.io/ts-regex-builder/api/anchors)
156156
157157## Examples
158158
159- See [ Examples document ] ( https://callstack.github.io/ts-regex-builder/examples.md ) .
159+ See [ Examples] ( https://callstack.github.io/ts-regex-builder/examples ) .
160160
161161## Performance
162162
You can’t perform that action at this time.
0 commit comments