Skip to content

Commit

Permalink
fix: fix typo (#2730)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason3S committed Aug 10, 2023
1 parent c70bb56 commit 8f39e66
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/_includes/generated-docs/configuration.md
Expand Up @@ -635,7 +635,7 @@ Default
| [`cSpell.checkOnlyEnabledFileTypes`](#cspellcheckonlyenabledfiletypes) | resource | Check Only Enabled File Types |
| [`cSpell.enableFiletypes`](#cspellenablefiletypes) | resource | File Types to Check |
| [`cSpell.files`](#cspellfiles) | resource | Glob patterns of files to be checked. |
| [`cSpell.globRoot`](#cspellglobroot) | resource | The root to use for glop patterns found in this configuration. |
| [`cSpell.globRoot`](#cspellglobroot) | resource | The root to use for glob patterns found in this configuration. |
| [`cSpell.ignorePaths`](#cspellignorepaths) | resource | Glob patterns of files to be ignored |
| [`cSpell.import`](#cspellimport) | resource | Allows this configuration to inherit configuration for one or more other files. |
| [`cSpell.noConfigSearch`](#cspellnoconfigsearch) | resource | Prevents searching for local configuration when checking individual documents. |
Expand Down Expand Up @@ -763,7 +763,7 @@ Scope
: resource

Description
: The root to use for glop patterns found in this configuration.
: The root to use for glob patterns found in this configuration.
Default: The current workspace folder.
Use `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.
Defining globRoot, does not impact imported configurations.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -1266,7 +1266,7 @@
},
"cSpell.globRoot": {
"description": "",
"markdownDescription": "The root to use for glop patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:<name>}` - Where `<name>` is the name of the workspace folder.",
"markdownDescription": "The root to use for glob patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:<name>}` - Where `<name>` is the name of the workspace folder.",
"scope": "resource",
"type": "string"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/_server/spell-checker-config.schema.json
Expand Up @@ -776,7 +776,7 @@
},
"cSpell.globRoot": {
"description": "",
"markdownDescription": "The root to use for glop patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:<name>}` - Where `<name>` is the name of the workspace folder.",
"markdownDescription": "The root to use for glob patterns found in this configuration.\nDefault: The current workspace folder.\nUse `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.\nDefining globRoot, does not impact imported configurations.\n\nSpecial Values:\n\n- `${workspaceFolder}` - Default - globs will be relative to the current workspace folder\\n\n- `${workspaceFolder:<name>}` - Where `<name>` is the name of the workspace folder.",
"scope": "resource",
"type": "string"
},
Expand Down
Expand Up @@ -161,7 +161,7 @@ export interface CSpellSettingsPackageProperties extends CSpellSettings {
/**
* @description
* @markdownDescription
* The root to use for glop patterns found in this configuration.
* The root to use for glob patterns found in this configuration.
* Default: The current workspace folder.
* Use `globRoot` to define a different location. `globRoot` can be relative to the location of this configuration file.
* Defining globRoot, does not impact imported configurations.
Expand Down

0 comments on commit 8f39e66

Please sign in to comment.