Merge pull request #137810 from mkantor/doc-comment-typos

Fix a few typos in doc comments
This commit is contained in:
Alexandru Dima 2021-11-26 10:10:04 +01:00 committed by GitHub
commit eca6f7ed24
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View file

@ -760,7 +760,7 @@ export interface ITextModel {
getLineLastNonWhitespaceColumn(lineNumber: number): number;
/**
* Create a valid position,
* Create a valid position.
*/
validatePosition(position: IPosition): Position;
@ -800,7 +800,7 @@ export interface ITextModel {
getPositionAt(offset: number): Position;
/**
* Get a range covering the entire model
* Get a range covering the entire model.
*/
getFullModelRange(): Range;

View file

@ -539,11 +539,10 @@ export interface CompletionItem {
/**
* A string or snippet that should be inserted in a document when selecting
* this completion.
* is used.
*/
insertText: string;
/**
* Addition rules (as bitmask) that should be applied when inserting
* Additional rules (as bitmask) that should be applied when inserting
* this completion.
*/
insertTextRules?: CompletionItemInsertTextRule;