@@ -1101,7 +1101,7 @@ declare module 'vscode' {
11011101
11021102 /**
11031103 * The column in which this editor shows. Will be `undefined` in case this
1104- * isn't one of the main editors, e.g an embedded editor, or when the editor
1104+ * isn't one of the main editors, e.g. an embedded editor, or when the editor
11051105 * column is larger than three.
11061106 */
11071107 viewColumn ?: ViewColumn ;
@@ -1900,7 +1900,7 @@ declare module 'vscode' {
19001900 *
19011901 * *Note* that a document selector that is just a language identifier selects *all*
19021902 * documents, even those that are not saved on disk. Only use such selectors when
1903- * a feature works without further context, e.g without the need to resolve related
1903+ * a feature works without further context, e.g. without the need to resolve related
19041904 * 'files'.
19051905 *
19061906 * @sample `let sel:DocumentSelector = { scheme: 'file', language: 'typescript' }`;
@@ -2595,7 +2595,7 @@ declare module 'vscode' {
25952595 name : string ;
25962596
25972597 /**
2598- * More detail for this symbol, e.g the signature of a function.
2598+ * More detail for this symbol, e.g. the signature of a function.
25992599 */
26002600 detail : string ;
26012601
@@ -2605,12 +2605,12 @@ declare module 'vscode' {
26052605 kind : SymbolKind ;
26062606
26072607 /**
2608- * The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g comments and code.
2608+ * The range enclosing this symbol not including leading/trailing whitespace but everything else, e.g. comments and code.
26092609 */
26102610 range : Range ;
26112611
26122612 /**
2613- * The range that should be selected and reveal when this symbol is being picked, e.g the name of a function.
2613+ * The range that should be selected and reveal when this symbol is being picked, e.g. the name of a function.
26142614 * Must be contained by the [`range`](#DocumentSymbol.range).
26152615 */
26162616 selectionRange : Range ;
@@ -3649,7 +3649,7 @@ declare module 'vscode' {
36493649 *
36503650 * For some languages one color can have multiple presentations, e.g. css can represent the color red with
36513651 * the constant `Red`, the hex-value `#ff0000`, or in rgba and hsla forms. In csharp other representations
3652- * apply, e.g `System.Drawing.Color.Red`.
3652+ * apply, e.g. `System.Drawing.Color.Red`.
36533653 */
36543654 export class ColorPresentation {
36553655
@@ -4235,7 +4235,7 @@ declare module 'vscode' {
42354235
42364236 /**
42374237 * Represents a related message and source code location for a diagnostic. This should be
4238- * used to point to code locations that cause or related to a diagnostics, e.g when duplicating
4238+ * used to point to code locations that cause or related to a diagnostics, e.g. when duplicating
42394239 * a symbol in a scope.
42404240 */
42414241 export class DiagnosticRelatedInformation {
@@ -6680,7 +6680,7 @@ declare module 'vscode' {
66806680 * the following rules:
66816681 *
66826682 * - The uri-scheme must be `vscode.env.uriScheme`;
6683- * - The uri-authority must be the extension id (eg . `my.extension`);
6683+ * - The uri-authority must be the extension id (e.g . `my.extension`);
66846684 * - The uri-path, -query and -fragment parts are arbitrary.
66856685 *
66866686 * For example, if the `my.extension` extension registers a uri handler, it will only
@@ -8421,9 +8421,9 @@ declare module 'vscode' {
84218421 /**
84228422 * Creates a new [source control](#SourceControl) instance.
84238423 *
8424- * @param id An `id` for the source control. Something short, eg : `git`.
8425- * @param label A human-readable string for the source control. Eg : `Git`.
8426- * @param rootUri An optional Uri of the root of the source control. Eg : `Uri.parse(workspaceRoot)`.
8424+ * @param id An `id` for the source control. Something short, e.g. : `git`.
8425+ * @param label A human-readable string for the source control. E.g. : `Git`.
8426+ * @param rootUri An optional Uri of the root of the source control. E.g. : `Uri.parse(workspaceRoot)`.
84278427 * @return An instance of [source control](#SourceControl).
84288428 */
84298429 export function createSourceControl ( id : string , label : string , rootUri ?: Uri ) : SourceControl ;
0 commit comments