mirror of
https://github.com/microsoft/vscode.git
synced 2026-07-13 23:44:09 +01:00
Fix doc comment spelling errors in problemMatcher.ts
This commit is contained in:
@@ -429,9 +429,9 @@ export namespace Config {
|
||||
file?: number;
|
||||
|
||||
/**
|
||||
* The match group index of the problems's location. Valid location
|
||||
* The match group index of the problem's location. Valid location
|
||||
* patterns are: (line), (line,column) and (startLine,startColumn,endLine,endColumn).
|
||||
* If omitted the line and colum properties are used.
|
||||
* If omitted the line and column properties are used.
|
||||
*/
|
||||
location?: number;
|
||||
|
||||
@@ -472,7 +472,7 @@ export namespace Config {
|
||||
severity?: number;
|
||||
|
||||
/**
|
||||
* The match group index of the problems's code.
|
||||
* The match group index of the problem's code.
|
||||
*
|
||||
* Defaults to undefined. No code is captured.
|
||||
*/
|
||||
@@ -672,12 +672,12 @@ export namespace Config {
|
||||
export interface NamedProblemMatcher extends ProblemMatcher {
|
||||
/**
|
||||
* An optional name. This name can be used to refer to the
|
||||
* problem matchter from within a task.
|
||||
* problem matcher from within a task.
|
||||
*/
|
||||
name?: string;
|
||||
|
||||
/**
|
||||
* A human reable label.
|
||||
* A human readable label.
|
||||
*/
|
||||
label?: string;
|
||||
}
|
||||
@@ -1648,4 +1648,4 @@ class ProblemMatcherRegistryImpl implements IProblemMatcherRegistry {
|
||||
}
|
||||
}
|
||||
|
||||
export const ProblemMatcherRegistry: IProblemMatcherRegistry = new ProblemMatcherRegistryImpl();
|
||||
export const ProblemMatcherRegistry: IProblemMatcherRegistry = new ProblemMatcherRegistryImpl();
|
||||
|
||||
Reference in New Issue
Block a user