Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/vs/vscode.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ declare module 'vscode' {
constructor(line: number, character: number);

/**
* Check if `other` is before this position.
* Check if this position is before `other`.
*
* @param other A position.
* @return `true` if position is on a smaller line
Expand All @@ -270,7 +270,7 @@ declare module 'vscode' {
isBefore(other: Position): boolean;

/**
* Check if `other` is before or equal to this position.
* Check if this position is before or equal to `other`.
*
* @param other A position.
* @return `true` if position is on a smaller line
Expand All @@ -279,7 +279,7 @@ declare module 'vscode' {
isBeforeOrEqual(other: Position): boolean;

/**
* Check if `other` is after this position.
* Check if this position is after `other`.
*
* @param other A position.
* @return `true` if position is on a greater line
Expand All @@ -288,7 +288,7 @@ declare module 'vscode' {
isAfter(other: Position): boolean;

/**
* Check if `other` is after or equal to this position.
* Check if this position is after or equal to `other`.
*
* @param other A position.
* @return `true` if position is on a greater line
Expand All @@ -297,7 +297,7 @@ declare module 'vscode' {
isAfterOrEqual(other: Position): boolean;

/**
* Check if `other` equals this position.
* Check if this position is equal to `other`.
*
* @param other A position.
* @return `true` if the line and character of the given position are equal to
Expand Down