Skip to content

Commit

Permalink
Merge pull request #29963 from dlech/patch-4
Browse files Browse the repository at this point in the history
Fix doc comment spelling errors in problemMatcher.ts
  • Loading branch information
dbaeumer authored Jul 3, 2017
2 parents 794b4ee + 610a6f9 commit 1452fb9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/vs/platform/markers/common/problemMatcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down Expand Up @@ -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.
*/
Expand Down Expand Up @@ -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;
}
Expand Down Expand Up @@ -1648,4 +1648,4 @@ class ProblemMatcherRegistryImpl implements IProblemMatcherRegistry {
}
}

export const ProblemMatcherRegistry: IProblemMatcherRegistry = new ProblemMatcherRegistryImpl();
export const ProblemMatcherRegistry: IProblemMatcherRegistry = new ProblemMatcherRegistryImpl();

0 comments on commit 1452fb9

Please sign in to comment.