diff --git a/src/vs/vscode.proposed.d.ts b/src/vs/vscode.proposed.d.ts index 7382f0dd54c0a107b3e8d1331eac3f7208e50a5e..c81ec0d551215d2b532699c5cbb8932b9d8a9a42 100644 --- a/src/vs/vscode.proposed.d.ts +++ b/src/vs/vscode.proposed.d.ts @@ -869,7 +869,7 @@ declare module 'vscode' { replyToCommentThread(document: TextDocument, range: Range, commentThread: CommentThread, text: string, token: CancellationToken): Promise; /** - * Called when a user edits the comment body to the be new text text. + * Called when a user edits the comment body to the be new text. */ editComment?(document: TextDocument, comment: Comment, text: string, token: CancellationToken): Promise; diff --git a/src/vs/workbench/services/textfile/common/textfiles.ts b/src/vs/workbench/services/textfile/common/textfiles.ts index 727fcccd1823fdb2ae82782cf6d1770766f06fd0..05065018f2633148fb46ac231bfcf90b285b2db3 100644 --- a/src/vs/workbench/services/textfile/common/textfiles.ts +++ b/src/vs/workbench/services/textfile/common/textfiles.ts @@ -15,7 +15,7 @@ import { ITextBufferFactory } from 'vs/editor/common/model'; import { RawContextKey } from 'vs/platform/contextkey/common/contextkey'; /** - * The save error handler can be installed on the text text file editor model to install code that executes when save errors occur. + * The save error handler can be installed on the text file editor model to install code that executes when save errors occur. */ export interface ISaveErrorHandler { @@ -34,7 +34,7 @@ export interface ISaveParticipant { } /** - * States the text text file editor model can be in. + * States the text file editor model can be in. */ export const enum ModelState { SAVED,