Comment spelling

This commit is contained in:
Matt Bierner 2021-06-09 10:56:15 -07:00
parent 6f6147f335
commit 72c5213004
No known key found for this signature in database
GPG key ID: 099C331567E11888

16
src/vs/vscode.d.ts vendored
View file

@ -11427,7 +11427,7 @@ declare module 'vscode' {
readonly outputs: readonly NotebookCellOutput[];
/**
* The most recent {@link NotebookCellExecutionSummary excution summary} for this cell.
* The most recent {@link NotebookCellExecutionSummary execution summary} for this cell.
*/
readonly executionSummary?: NotebookCellExecutionSummary;
}
@ -11495,7 +11495,7 @@ declare module 'vscode' {
/**
* Get the cells of this notebook. A subset can be retrieved by providing
* a range. The range will be adjuset to the notebook.
* a range. The range will be adjusted to the notebook.
*
* @param range A notebook range.
* @returns The cells contained by the range or all cells.
@ -11533,7 +11533,7 @@ declare module 'vscode' {
}
/**
* A notebook range represents an ordered pair of two cell indicies.
* A notebook range represents an ordered pair of two cell indices.
* It is guaranteed that start is less than or equal to end.
*/
export class NotebookRange {
@ -11644,7 +11644,7 @@ declare module 'vscode' {
data: Uint8Array;
/**
* Create a new notbook cell output item.
* Create a new notebook cell output item.
*
* @param data The value of the output item.
* @param mime The mime type of the output item.
@ -12140,7 +12140,7 @@ declare module 'vscode' {
/**
* Namespace for notebooks.
*
* The notebooks functionality is composed of three loosly coupled components:
* The notebooks functionality is composed of three loosely coupled components:
*
* 1. {@link NotebookSerializer} enable the editor to open, show, and save notebooks
* 2. {@link NotebookController} own the execution of notebooks, e.g they create output from code cells.
@ -13530,17 +13530,17 @@ declare module 'vscode' {
*/
export interface AuthenticationProviderAuthenticationSessionsChangeEvent {
/**
* The {@link AuthenticationSession}s of the {@link AuthentiationProvider AuthenticationProvider} that have been added.
* The {@link AuthenticationSession}s of the {@link AuthenticationProvider} that have been added.
*/
readonly added?: readonly AuthenticationSession[];
/**
* The {@link AuthenticationSession}s of the {@link AuthentiationProvider AuthenticationProvider} that have been removed.
* The {@link AuthenticationSession}s of the {@link AuthenticationProvider} that have been removed.
*/
readonly removed?: readonly AuthenticationSession[];
/**
* The {@link AuthenticationSession}s of the {@link AuthentiationProvider AuthenticationProvider} that have been changed.
* The {@link AuthenticationSession}s of the {@link AuthenticationProvider} that have been changed.
* A session changes when its data excluding the id are updated. An example of this is a session refresh that results in a new
* access token being set for the session.
*/