File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ const currencyAmount = buildRegExp([
89
89
]);
90
90
```
91
91
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.
93
93
94
94
### Regex Builders
95
95
@@ -98,7 +98,7 @@ See [Types](https://callstack.github.io/ts-regex-builder/api/types) for more inf
98
98
| ` buildRegExp(...) ` | ` /.../ ` | Create ` RegExp ` instance |
99
99
| ` buildRegExp(..., { ignoreCase: true }) ` | ` /.../i ` | Create ` RegExp ` instance with flags |
100
100
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.
102
102
103
103
### Regex Constructs
104
104
@@ -111,7 +111,7 @@ See [Regex Builder API doc](https://callstack.github.io/ts-regex-builder/api/bui
111
111
| ` lookbehind(...) ` | ` (?<=...) ` | Match preceding text without consuming it |
112
112
| ` negativeLookbehind(...) ` | ` (?<!...) ` | Reject preceding text without consuming it |
113
113
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.
115
115
116
116
> [ !NOTE]
117
117
> 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)
156
156
157
157
## Examples
158
158
159
- See [ Examples document ] ( https://callstack.github.io/ts-regex-builder/examples.md ) .
159
+ See [ Examples] ( https://callstack.github.io/ts-regex-builder/examples ) .
160
160
161
161
## Performance
162
162
You can’t perform that action at this time.
0 commit comments