Skip to content

Commit 9be23e7

Browse files
authored
Merge pull request microsoft#19546 from Gama11/patch-1
Typo fix
2 parents 25c5563 + 9efa107 commit 9be23e7

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/vs/vscode.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,20 +371,20 @@ declare module 'vscode' {
371371
constructor(startLine: number, startCharacter: number, endLine: number, endCharacter: number);
372372

373373
/**
374-
* `true` iff `start` and `end` are equal.
374+
* `true` if `start` and `end` are equal.
375375
*/
376376
isEmpty: boolean;
377377

378378
/**
379-
* `true` iff `start.line` and `end.line` are equal.
379+
* `true` if `start.line` and `end.line` are equal.
380380
*/
381381
isSingleLine: boolean;
382382

383383
/**
384384
* Check if a position or a range is contained in this range.
385385
*
386386
* @param positionOrRange A position or a range.
387-
* @return `true` iff the position or range is inside or equal
387+
* @return `true` if the position or range is inside or equal
388388
* to this range.
389389
*/
390390
contains(positionOrRange: Position | Range): boolean;
@@ -2862,7 +2862,7 @@ declare module 'vscode' {
28622862
* Check if this configuration has a certain value.
28632863
*
28642864
* @param section Configuration name, supports _dotted_ names.
2865-
* @return `true` iff the section doesn't resolve to `undefined`.
2865+
* @return `true` if the section doesn't resolve to `undefined`.
28662866
*/
28672867
has(section: string): boolean;
28682868

0 commit comments

Comments
 (0)