Typos (thanks gjsjohnmurray!)

ref #6328
This commit is contained in:
Jackson Kearl
2022-01-17 21:44:08 -08:00
parent 3f1f1264b4
commit e00873bcf6
2 changed files with 2 additions and 2 deletions
@@ -460,7 +460,7 @@ configurationRegistry.registerConfiguration({
},
'explorer.experimental.fileNesting.expand': {
'type': 'boolean',
'markdownDescription': nls.localize('fileNestingExpand', "Experimental. Controls whether file nests are automatically expended. `#explorer.experimental.fileNesting.enabled#` must be set for this to take effect."),
'markdownDescription': nls.localize('fileNestingExpand', "Experimental. Controls whether file nests are automatically expanded. `#explorer.experimental.fileNesting.enabled#` must be set for this to take effect."),
'default': true,
},
'explorer.experimental.fileNesting.patterns': {
@@ -5,7 +5,7 @@
/**
* A sort of double-ended trie, used to efficiently query for matches to "star" patterns, where
* a given key representas a parent and may contain a capturing group ("*"), which can then be
* a given key represents a parent and may contain a capturing group ("*"), which can then be
* referenced via the token "$(capture)" in associated child patterns.
*
* The generated tree will have at most two levels, as subtrees are flattened rather than nested.