From e58b260026f269df2b47d083d30bc0620b2aef92 Mon Sep 17 00:00:00 2001 From: Dirk Baeumer Date: Mon, 31 Oct 2016 11:36:29 +0100 Subject: [PATCH] Fixes #14598: Go To description mentions line, column but it should be line, character. --- .../parts/tasks/electron-browser/task.contribution.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts index 5667cbd2ea2..9144ac3d9ca 100644 --- a/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts +++ b/src/vs/workbench/parts/tasks/electron-browser/task.contribution.ts @@ -1067,7 +1067,7 @@ let schema: IJSONSchema = }, 'location': { 'type': 'integer', - 'description': nls.localize('JsonSchema.pattern.location', 'The match group index of the problem\'s location. Valid location patterns are: (line), (line,column) and (startLine,startColumn,endLine,endColumn). If omitted line and column is assumed.') + 'description': nls.localize('JsonSchema.pattern.location', 'The match group index of the problem\'s location. Valid location patterns are: (line), (line,column) and (startLine,startColumn,endLine,endColumn). If omitted (line,column) is assumed.') }, 'line': { 'type': 'integer', @@ -1075,7 +1075,7 @@ let schema: IJSONSchema = }, 'column': { 'type': 'integer', - 'description': nls.localize('JsonSchema.pattern.column', 'The match group index of the problem\'s column. Defaults to 3') + 'description': nls.localize('JsonSchema.pattern.column', 'The match group index of the problem\'s line character. Defaults to 3') }, 'endLine': { 'type': 'integer', @@ -1083,7 +1083,7 @@ let schema: IJSONSchema = }, 'endColumn': { 'type': 'integer', - 'description': nls.localize('JsonSchema.pattern.endColumn', 'The match group index of the problem\'s end column. Defaults to undefined') + 'description': nls.localize('JsonSchema.pattern.endColumn', 'The match group index of the problem\'s end line character. Defaults to undefined') }, 'severity': { 'type': 'integer', -- GitLab