Skip to content

Commit 1fe4c33

Browse files
update comment
1 parent dcc0540 commit 1fe4c33

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/types.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,7 @@ export type SettingSelector = {
1111
* @remarks
1212
* An asterisk `*` can be added to the end to return all key-values whose key begins with the key filter.
1313
* e.g. key filter `abc*` returns all key-values whose key starts with `abc`.
14-
* A comma `,` can be used to select multiple key-values. Comma separated filters must exactly match a key to select it.
15-
* Using asterisk to select key-values that begin with a key filter while simultaneously using comma separated key filters is not supported.
16-
* E.g. the key filter `abc*,def` is not supported. The key filters `abc*` and `abc,def` are supported.
17-
* For all other cases the characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\).
14+
* Characters: asterisk `*`, comma `,`, and backslash `\` are reserved. Reserved characters must be escaped using a backslash (\).
1815
* e.g. the key filter `a\\b\,\*c*` returns all key-values whose key starts with `a\b,*c`.
1916
*/
2017
keyFilter?: string,

0 commit comments

Comments
 (0)